-- 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=299 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=1771 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:21:{i:1621538662;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:1621538924;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:1621541662;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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:1621541664;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:1621541772;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:1621541773;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:1621541893;a:4:{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;}}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:1621541916;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:1621541928;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:1621541929;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:1621541938;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:1621541989;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:1621542117;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:1621552706;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:1621555200;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:1621563506;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:1621800862;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1621836000;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:1621935662;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:1622665166;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'),(1762,'_site_transient_timeout_theme_roots','1621540319','no'),(1763,'_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'),(1766,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1621538520;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'),(1767,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1621538520;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.2\";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.2\";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.2\";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.8\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/newsletter/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/newsletter.7.1.8.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.2\";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.2\";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.2\";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.3.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0.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.2\";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.2\";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.22\";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.22.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.2\";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','1621454268','yes'),(135,'can_compress_scripts','1','no'),(1614,'_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.2.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.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.2\";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:1621538518;s:15:\"version_checked\";s:5:\"5.7.2\";s:12:\"translations\";a:0:{}}','no'),(1674,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1621834146','no'),(1675,'_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:0;s:13:\"is_acceptable\";b: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'),(1760,'_transient_timeout__woocommerce_helper_subscriptions','1621539419','no'),(1761,'_transient__woocommerce_helper_subscriptions','a:0:{}','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:1620344305;i:1;i:1620344425;i:2;i:1620365526;i:3;i:1620365542;i:4;i:1620366845;i:5;i:1620401605;i:6;i:1620401625;i:7;i:1620414328;i:8;i:1620452787;i:9;i:1620464202;i:10;i:1620467232;i:11;i:1620517618;i:12;i:1620517647;i:13;i:1620517704;i:14;i:1620517802;i:15;i:1620517823;i:16;i:1620517883;i:17;i:1620517947;i:18;i:1620518003;i:19;i:1620518027;i:20;i:1620518065;i:21;i:1620518122;i:22;i:1620518187;i:23;i:1620518247;i:24;i:1620518303;i:25;i:1620518326;i:26;i:1620518366;i:27;i:1620518403;i:28;i:1620518422;i:29;i:1620518507;i:30;i:1620518547;i:31;i:1620518605;i:32;i:1620518682;i:33;i:1620518725;i:34;i:1620518802;i:35;i:1620518853;i:36;i:1620518932;i:37;i:1620518988;i:38;i:1620519058;i:39;i:1620519087;i:40;i:1620519143;i:41;i:1620519204;i:42;i:1620519237;i:43;i:1620519273;i:44;i:1620519369;i:45;i:1620519384;i:46;i:1620519445;i:47;i:1620519503;i:48;i:1620519530;i:49;i:1620519547;i:50;i:1620519567;i:51;i:1620519627;i:52;i:1620519749;i:53;i:1620519863;i:54;i:1620519949;i:55;i:1620519997;i:56;i:1620520076;i:57;i:1620520165;i:58;i:1620520246;i:59;i:1620520366;i:60;i:1620520432;i:61;i:1620520486;i:62;i:1620520527;i:63;i:1620522478;i:64;i:1620522544;i:65;i:1620522588;i:66;i:1620532483;i:67;i:1620554897;i:68;i:1620640890;i:69;i:1620640904;i:70;i:1620644486;i:71;i:1620676166;i:72;i:1620684415;i:73;i:1620685205;i:74;i:1620749290;i:75;i:1620807006;i:76;i:1620807078;i:77;i:1620819194;i:78;i:1620820878;i:79;i:1620820884;i:80;i:1620826559;i:81;i:1620976151;i:82;i:1621024264;i:83;i:1621034636;i:84;i:1621055192;i:85;i:1621060673;i:86;i:1621061489;i:87;i:1621144763;i:88;i:1621218328;i:89;i:1621229341;i:90;i:1621255458;i:91;i:1621282736;i:92;i:1621322730;i:93;i:1621347141;i:94;i:1621364734;i:95;i:1621454251;i:96;i:1621493982;i:97;i:1621493991;i:98;i:1621538516;i:99;i:1621538644;}','no'),(393,'newsletter_diagnostic_cron_data','a:3:{s:4:\"mean\";d:11942.389999999999417923390865325927734375;s:3:\"max\";i:149592;s:3:\"min\";i:6;}','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:16:\"themepunch.tools\";i:1;s:22:\"themepunch-ext-a.tools\";i:2;s:22:\"themepunch-ext-a.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-b.tools\";i:5;s:22:\"themepunch-ext-b.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(195,'revslider_server_refresh','1621322710','yes'),(196,'revslider-update-check-short','1621454270','yes'),(197,'revslider-connection','1','yes'),(198,'revslider-update-hash','1e1336e899adafc9a20ba79354344b06','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:310:\"<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.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:67:\"//updates.themepunch.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:70:\"//updates.themepunch.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:70:\"//updates.themepunch.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:71:\"//updates.themepunch.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:74:\"//updates.themepunch.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:78:\"//updates.themepunch.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:65:\"//updates.themepunch.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:69:\"//updates.themepunch.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:64:\"//updates.themepunch.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:71:\"//updates.themepunch.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:70:\"//updates.themepunch.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:66:\"//updates.themepunch.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:71:\"//updates.themepunch.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:68:\"//updates.themepunch.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:69:\"//updates.themepunch.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:68:\"//updates.themepunch.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:67:\"//updates.themepunch.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:71:\"//updates.themepunch.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:70:\"//updates.themepunch.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:71:\"//updates.themepunch.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:73:\"//updates.themepunch.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:70:\"//updates.themepunch.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:75:\"//updates.themepunch.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:71:\"//updates.themepunch.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:72:\"//updates.themepunch.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:72:\"//updates.themepunch.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:67:\"//updates.themepunch.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:67:\"//updates.themepunch.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:70:\"//updates.themepunch.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:72:\"//updates.themepunch.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:72:\"//updates.themepunch.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:67:\"//updates.themepunch.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}}','yes'),(205,'revslider-library-check','1621493989','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','1621229350','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','1621494051','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'),(1758,'_transient_timeout_tnp_extensions_json','1621797719','no'),(1759,'_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.4.0\",\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.7\",\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.3\",\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.3\",\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.3\",\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:1621538520;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'),(1764,'_transient_timeout__woocommerce_helper_updates','1621581719','no'),(1765,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1621538519;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(403,'wc_remote_inbox_notifications_specs','a:18:{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:152:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.\";}}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-05-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-06-14 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.4.0\";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:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a: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:26:\"woocommerce-gateway-stripe\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"wcpay_instant_deposits_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wcpay_instant_deposits_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:69:\"Get paid within minutes – Instant Deposits for WooCommerce Payments\";s:7:\"content\";s:384:\"Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.\";}}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:40:\"Learn about Instant Deposits eligibility\";}}s:3:\"url\";s:136:\"https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\";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-05-18 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-06-01 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}','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'),(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.2\";s:9:\"timestamp\";i:1620976163;}','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'),(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'),(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\":5,\"critical\":1}','yes');
/*!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','1620520486: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','1620520523: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),(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=818 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,''),(799,3,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(800,4,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),(801,5,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(802,6,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(803,7,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(804,8,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(805,9,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(806,10,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),(807,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,''),(808,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,''),(810,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,''),(811,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,''),(812,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,''),(813,16,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),(814,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,''),(809,13,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),(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,''),(816,28,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',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'),(815,27,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,''),(817,29,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','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=30 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 measurement and ad targeting capabilities.','{}','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'),(28,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-05-14 07:09:32',NULL,0,'plain','',0,'info'),(29,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-05-14 20:31:07',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 */;
/*!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-20 12:25:25
