File: /opt/aphex/sites/tropofoto.com/db.sql
-- MySQL dump 10.13 Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost Database: tropofoto_com
-- ------------------------------------------------------
-- Server version 8.0.32-0ubuntu0.20.04.2
/*!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 */;
/*!50503 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 `wp_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`group_id` bigint unsigned NOT NULL DEFAULT '0',
`attempts` int 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 unsigned NOT NULL DEFAULT '0',
`extended_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_actions`
--
LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (8,'action_scheduler/migration_hook','pending','2020-10-13 11:39:10','2020-10-13 11:39:10','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1602589150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1602589150;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(9,'wc-admin_import_orders','pending','2020-10-13 11:40:52','2020-10-13 11:40:52','[1385]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1602589252;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1602589252;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(10,'wc-admin_import_orders','pending','2020-10-13 11:40:52','2020-10-13 11:40:52','[1386]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1602589252;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1602589252;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_claims`
--
LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_groups`
--
LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint unsigned NOT NULL,
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_logs`
--
LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1,8,'action created','2020-10-13 11:38:10','2020-10-13 11:38:10'),(2,9,'action created','2020-10-13 11:40:47','2020-10-13 11:40:47'),(3,10,'action created','2020-10-13 11:40:47','2020-10-13 11:40:47');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` VALUES (1,6,'rating','5'),(2,6,'verified','0'),(3,7,'rating','5'),(4,7,'verified','0');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int NOT NULL DEFAULT '0',
`comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint unsigned NOT NULL DEFAULT '0',
`user_id` bigint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10)),
KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (6,522,'admin','[email protected]','','118.70.186.156','2018-06-20 03:27:56','2018-06-20 02:27:56','like',0,'1','','review',0,0),(7,525,'admin','[email protected]','','118.70.186.156','2018-08-10 05:37:16','2018-08-10 04:37:16','good',0,'1','','review',0,0),(12,1385,'WooCommerce','[email protected]','','','2018-06-20 08:56:27','2018-06-20 07:56:27','Awaiting check payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(13,1386,'WooCommerce','[email protected]','','','2018-06-20 08:59:47','2018-06-20 07:59:47','Awaiting check payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(17,88,'concetta','[email protected]','https://is.gd/dBsd60','127.0.0.1','2023-02-24 21:09:40','2023-02-24 21:09:40','Time to sit on you? https://is.gd/dBsd60',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_events`
--
DROP TABLE IF EXISTS `wp_e_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_e_events` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`event_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_events`
--
LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint unsigned NOT NULL DEFAULT '1',
`link_rating` int NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_newsletter`
--
DROP TABLE IF EXISTS `wp_newsletter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_newsletter` (
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`token` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`language` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'S',
`id` int NOT NULL AUTO_INCREMENT,
`profile` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated` int NOT NULL DEFAULT '0',
`last_activity` int NOT NULL DEFAULT '0',
`followup_step` tinyint NOT NULL DEFAULT '0',
`followup_time` bigint NOT NULL DEFAULT '0',
`followup` tinyint NOT NULL DEFAULT '0',
`surname` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sex` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n',
`feed_time` bigint NOT NULL DEFAULT '0',
`feed` tinyint NOT NULL DEFAULT '0',
`referrer` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`wp_user_id` int NOT NULL DEFAULT '0',
`http_referer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`geo` tinyint NOT NULL DEFAULT '0',
`country` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`region` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`bounce_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`bounce_time` int NOT NULL DEFAULT '0',
`unsub_email_id` int NOT NULL DEFAULT '0',
`unsub_time` int NOT NULL DEFAULT '0',
`list_1` tinyint NOT NULL DEFAULT '0',
`list_2` tinyint NOT NULL DEFAULT '0',
`list_3` tinyint NOT NULL DEFAULT '0',
`list_4` tinyint NOT NULL DEFAULT '0',
`list_5` tinyint NOT NULL DEFAULT '0',
`list_6` tinyint NOT NULL DEFAULT '0',
`list_7` tinyint NOT NULL DEFAULT '0',
`list_8` tinyint NOT NULL DEFAULT '0',
`list_9` tinyint NOT NULL DEFAULT '0',
`list_10` tinyint NOT NULL DEFAULT '0',
`list_11` tinyint NOT NULL DEFAULT '0',
`list_12` tinyint NOT NULL DEFAULT '0',
`list_13` tinyint NOT NULL DEFAULT '0',
`list_14` tinyint NOT NULL DEFAULT '0',
`list_15` tinyint NOT NULL DEFAULT '0',
`list_16` tinyint NOT NULL DEFAULT '0',
`list_17` tinyint NOT NULL DEFAULT '0',
`list_18` tinyint NOT NULL DEFAULT '0',
`list_19` tinyint NOT NULL DEFAULT '0',
`list_20` tinyint NOT NULL DEFAULT '0',
`list_21` tinyint NOT NULL DEFAULT '0',
`list_22` tinyint NOT NULL DEFAULT '0',
`list_23` tinyint NOT NULL DEFAULT '0',
`list_24` tinyint NOT NULL DEFAULT '0',
`list_25` tinyint NOT NULL DEFAULT '0',
`list_26` tinyint NOT NULL DEFAULT '0',
`list_27` tinyint NOT NULL DEFAULT '0',
`list_28` tinyint NOT NULL DEFAULT '0',
`list_29` tinyint NOT NULL DEFAULT '0',
`list_30` tinyint NOT NULL DEFAULT '0',
`list_31` tinyint NOT NULL DEFAULT '0',
`list_32` tinyint NOT NULL DEFAULT '0',
`list_33` tinyint NOT NULL DEFAULT '0',
`list_34` tinyint NOT NULL DEFAULT '0',
`list_35` tinyint NOT NULL DEFAULT '0',
`list_36` tinyint NOT NULL DEFAULT '0',
`list_37` tinyint NOT NULL DEFAULT '0',
`list_38` tinyint NOT NULL DEFAULT '0',
`list_39` tinyint NOT NULL DEFAULT '0',
`list_40` tinyint NOT NULL DEFAULT '0',
`profile_1` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_3` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_4` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_5` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_6` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_7` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_8` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_9` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_10` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_11` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_12` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_13` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_14` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_15` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_16` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_17` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_18` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_19` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`profile_20` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`test` tinyint NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`),
KEY `wp_user_id` (`wp_user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_newsletter`
--
LOCK TABLES `wp_newsletter` WRITE;
/*!40000 ALTER TABLE `wp_newsletter` DISABLE KEYS */;
INSERT INTO `wp_newsletter` VALUES ('Lena','[email protected]','630ee7c180','','C',1,NULL,'2020-10-13 11:38:12',0,0,0,0,0,'Jenkins','n',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,0,'','','','','','','','','','','','','','','','','','','','',1);
/*!40000 ALTER TABLE `wp_newsletter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_newsletter_emails`
--
DROP TABLE IF EXISTS `wp_newsletter_emails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_newsletter_emails` (
`id` int NOT NULL AUTO_INCREMENT,
`language` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` enum('new','sending','sent','paused') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new',
`total` int NOT NULL DEFAULT '0',
`last_id` int NOT NULL DEFAULT '0',
`sent` int NOT NULL DEFAULT '0',
`track` int NOT NULL DEFAULT '1',
`list` int NOT NULL DEFAULT '0',
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`query` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`editor` tinyint NOT NULL DEFAULT '0',
`sex` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`theme` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`message_text` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`preferences` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`send_on` int NOT NULL DEFAULT '0',
`token` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`options` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`private` tinyint(1) NOT NULL DEFAULT '0',
`click_count` int unsigned NOT NULL DEFAULT '0',
`version` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`open_count` int unsigned NOT NULL DEFAULT '0',
`unsub_count` int unsigned NOT NULL DEFAULT '0',
`error_count` int unsigned NOT NULL DEFAULT '0',
`stats_time` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_newsletter_emails`
--
LOCK TABLES `wp_newsletter_emails` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_emails` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_newsletter_emails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_newsletter_sent`
--
DROP TABLE IF EXISTS `wp_newsletter_sent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_newsletter_sent` (
`email_id` int unsigned NOT NULL DEFAULT '0',
`user_id` int unsigned NOT NULL DEFAULT '0',
`status` tinyint unsigned NOT NULL DEFAULT '0',
`open` tinyint unsigned NOT NULL DEFAULT '0',
`time` int unsigned NOT NULL DEFAULT '0',
`error` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`email_id`,`user_id`),
KEY `user_id` (`user_id`),
KEY `email_id` (`email_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_newsletter_sent`
--
LOCK TABLES `wp_newsletter_sent` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_sent` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_newsletter_sent` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_newsletter_stats`
--
DROP TABLE IF EXISTS `wp_newsletter_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_newsletter_stats` (
`id` int NOT NULL AUTO_INCREMENT,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_id` int NOT NULL DEFAULT '0',
`email_id` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`ip` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `email_id` (`email_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_newsletter_stats`
--
LOCK TABLES `wp_newsletter_stats` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_newsletter_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_newsletter_user_logs`
--
DROP TABLE IF EXISTS `wp_newsletter_user_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_newsletter_user_logs` (
`id` int NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL DEFAULT '0',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`source` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`created` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_newsletter_user_logs`
--
LOCK TABLES `wp_newsletter_user_logs` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_user_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_newsletter_user_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
`option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=118405 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://tropofoto.com','yes'),(2,'home','http://tropofoto.com','yes'),(3,'blogname','TropoFoto','yes'),(4,'blogdescription','Casino Photography','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','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','0','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','6','yes'),(23,'date_format','jS F 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','0','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:111:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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=8&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:19:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:35:\"redux-framework/redux-framework.php\";i:2;s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";i:3;s:34:\"advanced-custom-fields-pro/acf.php\";i:4;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:5;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:6;s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";i:7;s:31:\"cache-enabler/cache-enabler.php\";i:8;s:33:\"classic-editor/classic-editor.php\";i:9;s:36:\"contact-form-7/wp-contact-form-7.php\";i:10;s:31:\"elementor-pro/elementor-pro.php\";i:11;s:23:\"elementor/elementor.php\";i:12;s:37:\"link-whisper-premium/link-whisper.php\";i:13;s:29:\"mainwp-child/mainwp-child.php\";i:14;s:47:\"one-click-demo-import/one-click-demo-import.php\";i:15;s:45:\"remove-footer-credit/remove-footer-credit.php\";i:16;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:17;s:37:\"wordpress-autoblogging/basic-auth.php\";i:18;s:23:\"wp-insert/wp-insert.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','zix','yes'),(41,'stylesheet','zix','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','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','380','yes'),(57,'thumbnail_size_h','380','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','770','yes'),(60,'medium_size_h','447','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1170','yes'),(63,'large_size_h','465','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:8:{i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:96:\"<p style=\"font-size: 12px; font-weight: bold;\">Acumec - Copyright 2018. Design by Spyropress</p>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:2;a:4:{s:5:\"title\";s:13:\"WORKING HOURS\";s:4:\"text\";s:192:\"<div class=\"contact-info-box\">\r\n<ul class=\"hours\">\r\n <li><span class=\"title\">MONDAY TO FRIDAY:</span> 8AM - 8PM</li>\r\n <li><span class=\"title\">SATURDAY: </span> 9AM - 1PM</li>\r\n</ul>\r\n</div>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:11:\"INFORMATION\";s:4:\"text\";s:247:\"Lorem ipsum dolor sit amet, consectetur Lorime il eget orci dictum facilisis vel id tellus Lore nulimeui or sit amet, consectetur Sed id lorem egu ametim dictum facilisis vel id tellusLore nulimeuior sit ame get orci dictum facilisis vel id tellus\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:12:\"Get in touch\";s:4:\"text\";s:367:\"<ul class=\"list-unstyled\">\r\n <li><a href=\"https://goo.gl/maps/M6fSd7Z44G7V5gCq6\"><i class=\"fa fa-map-marker\"></i>Wave, Via Habro Derennio 22/b 52100 Arezzo, Italy</a></li>\r\n <li><a href=\"mailto:[email protected]\"><i class=\"fa fa-envelope\"></i>[email protected]</a></li>\r\n <li><a href=\"tel:0951856558\"><i class=\"fa fa-phone\"></i>095 1856 558 (Toll Free)</a></li>\r\n</ul>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:172:\"<strong style= color:red;>TropoFoto</strong>\r\n\r\nLorem ipsum dolor sit consectete eget orci dictum facili tellusLor or sit amet, consectetur Lorem sumi dictum facili tell us\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:7;a:4:{s:5:\"title\";s:12:\"Get in touch\";s:4:\"text\";s:367:\"<ul class=\"list-unstyled\">\r\n <li><a href=\"https://goo.gl/maps/M6fSd7Z44G7V5gCq6\"><i class=\"fa fa-map-marker\"></i>Wave, Via Habro Derennio 22/b 52100 Arezzo, Italy</a></li>\r\n <li><a href=\"mailto:[email protected]\"><i class=\"fa fa-envelope\"></i>[email protected]</a></li>\r\n <li><a href=\"tel:0951856558\"><i class=\"fa fa-phone\"></i>095 1856 558 (Toll Free)</a></li>\r\n</ul>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:8;a:4:{s:5:\"title\";s:10:\"Follow Us!\";s:4:\"text\";s:33:\"<div class=\"f_social_icon\"></div>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','2044','yes'),(82,'page_on_front','8','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','2064','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','1618064575','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"5.12.2\";}','no'),(95,'initial_db_version','48748','yes'),(96,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:129:{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:31:\"vc_access_rules_post_types/page\";b:1;s:34:\"vc_access_rules_post_types/project\";b:1;s:39:\"vc_access_rules_post_types/case_studies\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:24:\"vc_access_rules_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;s:31:\"vc_access_rules_post_types/team\";b:1;s:34:\"vc_access_rules_post_types/service\";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:43:{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:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:19:{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:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:14:{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:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(97,'fresh_site','0','yes'),(98,'widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-posts','a:3:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:11:\"Latest Blog\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}}','yes'),(100,'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'),(101,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:24:{i:0;s:6:\"text-8\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:17:\"recent-comments-2\";i:4;s:13:\"custom_html-1\";i:5;s:13:\"custom_html-6\";i:6;s:13:\"custom_html-7\";i:7;s:13:\"custom_html-8\";i:8;s:13:\"media_image-1\";i:9;s:13:\"media_image-2\";i:10;s:13:\"media_image-3\";i:11;s:13:\"media_image-4\";i:12;s:13:\"media_image-5\";i:13;s:13:\"media_image-6\";i:14;s:13:\"media_image-7\";i:15;s:6:\"text-1\";i:16;s:13:\"media_image-8\";i:17;s:10:\"nav_menu-2\";i:18;s:10:\"nav_menu-3\";i:19;s:10:\"nav_menu-4\";i:20;s:6:\"text-2\";i:21;s:6:\"text-3\";i:22;s:13:\"custom_html-9\";i:23;s:6:\"text-6\";}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-1\";i:1;s:14:\"recent-posts-1\";i:2;s:12:\"categories-1\";i:3;s:10:\"nav_menu-5\";i:4;s:6:\"text-5\";}s:14:\"footer_widgets\";a:4:{i:0;s:14:\"social_links-3\";i:1;s:10:\"nav_menu-7\";i:2;s:6:\"text-7\";i:3;s:14:\"recent-posts-3\";}s:13:\"array_version\";i:3;}','yes'),(104,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'db-version-secure','Wm0ZxEVtOE','yes'),(106,'tagline','','yes'),(108,'auth_key','.;m_ifU]%udE3abN6c z9A>qkW~l[xUQ0OX:INX4b Y3e<68 u-m7[UR#/G.}*76','no'),(109,'auth_salt','yOMqLBfSXcEj!ln`=1cUw/gh(C.tqJA(x8|c[ 8w9])S0lJ<l/@lDJ]d>ptqQK1=','no'),(110,'logged_in_key','8B-:5|w{, aee^X] 5^zK24%&ZN%To5CcP@hCO<jx8:*lhlAo9M6,KKm^&m}G[;H','no'),(111,'logged_in_salt','!Z<j)8S5vg^GjyFk{^ib`Cc(nX]BQHlKj>LNT=JCu:<*(Q{Qd~=b;|M$lDj/Rpc,','no'),(112,'cron','a:14:{i:1681020260;a:1:{s:27:\"wpil_broken_link_check_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"10min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1681021387;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:1681022289;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:1681022295;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:1681028453;a:1:{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;}}}i:1681039808;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:1681040289;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:1681042364;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681042365;a:1:{s:26:\"ACFFA_refresh_latest_icons\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681050186;a:1:{s:15:\"ebn_optimize_db\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681050187;a:6:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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: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:1681058159;a:2:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681222987;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;}}}s:7:\"version\";i:2;}','yes'),(113,'update_day','1','yes'),(114,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_media_image','a:9:{i:1;a:15:{s:13:\"attachment_id\";i:74;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand1.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:129;s:6:\"height\";i:70;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:2;a:15:{s:13:\"attachment_id\";i:75;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand2.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:153;s:6:\"height\";i:70;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:3;a:15:{s:13:\"attachment_id\";i:76;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand3.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:133;s:6:\"height\";i:61;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:4;a:15:{s:13:\"attachment_id\";i:83;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand4.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:132;s:6:\"height\";i:70;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:5;a:15:{s:13:\"attachment_id\";i:84;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand5.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:132;s:6:\"height\";i:66;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:6;a:15:{s:13:\"attachment_id\";i:85;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand6.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:129;s:6:\"height\";i:36;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:7;a:15:{s:13:\"attachment_id\";i:83;s:3:\"url\";s:58:\"http://tropofoto.com/wp-content/uploads/2018/04/brand4.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:132;s:6:\"height\";i:70;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:8;a:15:{s:13:\"attachment_id\";i:87;s:3:\"url\";s:62:\"http://tropofoto.com/wp-content/uploads/2018/04/logo_white.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:213;s:6:\"height\";i:46;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_nav_menu','a:6:{i:2;a:2:{s:5:\"title\";s:5:\"LINKS\";s:8:\"nav_menu\";i:45;}i:3;a:2:{s:5:\"title\";s:7:\"HELPING\";s:8:\"nav_menu\";i:46;}i:4;a:2:{s:5:\"title\";s:5:\"ABOUT\";s:8:\"nav_menu\";i:47;}i:5;a:2:{s:5:\"title\";s:11:\"Quick Links\";s:8:\"nav_menu\";i:74;}i:7;a:2:{s:5:\"title\";s:11:\"Quick Links\";s:8:\"nav_menu\";s:2:\"74\";}s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_custom_html','a:6:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:191:\"<div class=\"block-left\">\r\n <p class=\"icon-header\"><i class=\"fa fa-map-marker\"></i></p>\r\n</div>\r\n<div class=\"block-right\">\r\n<p>1010 Avenue of the Moon</p>\r\n<p>New York, NY 10018 US</p>\r\n</div>\";}i:6;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:163:\"<div class=\"header-block\">\r\n <div class=\"block-title\">\r\n 123 456 7890\r\n </div>\r\n <div class=\"block-content\">\r\n <a href=\"#\">24 Hours Helpline</a>\r\n </div>\r\n</div>\";}i:7;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:145:\"<div class=\"block-left\">\r\n <p class=\"icon-header\"><i class=\"fa fa-phone\"></i></p>\r\n</div>\r\n<div class=\"block-right\">\r\n<p>123-4567-890</p>\r\n</div>\";}i:8;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:156:\"<div class=\"block-left\">\r\n <p class=\"icon-header\"><i class=\"fa fa-envelope\"></i></p>\r\n</div>\r\n<div class=\"block-right\">\r\n<p>[email protected]</p>\r\n</div>\";}i:9;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:181:\"<div class=\"info-box\">\r\n<ul><li><span class=\"icon-left fa fa-map-marker\"></span><span class=\"info-right\">123 New York E Block 12670, Street<br>\r\n2101 USA</span> </li>\r\n</ul>\r\n</div>\";}s:12:\"_multiwidget\";i:1;}','yes'),(123,'nonce_key','$T<}4Pxr,qU{|v8`tj*(g{|kmXor7aEu0KbR_(bjU.:]HvquFMsc9W5,)DXM/oRK','no'),(124,'nonce_salt','g*yd?(HRvW7I,`>},RPXaYNcU&h(4F,u?<G>**t=A(E2(A0NSj](I:$OT~6uolQ5','no'),(125,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(133,'current_theme','Zix','yes'),(138,'theme_mods_minimer','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602588873;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(139,'crawl-delay-value','4','yes'),(164,'theme_mods_acumec','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:48;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602590120;s:4:\"data\";a:21:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";i:3;s:13:\"custom_html-1\";}s:9:\"sidebar-1\";a:12:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-2\";i:4;s:20:\"acumec_recent_post-1\";i:5;s:10:\"nav_menu-1\";i:6;s:19:\"cs_recent_post_v2-1\";i:7;s:11:\"cms_image-1\";i:8;s:18:\"cms_testimonials-1\";i:9;s:13:\"custom_html-2\";i:10;s:22:\"acumec_flickr_widget-1\";i:11;s:18:\"newsletterwidget-1\";}s:12:\"sidebar-page\";a:2:{i:0;s:20:\"acumec_recent_post-2\";i:1;s:11:\"cms_image-2\";}s:18:\"header-top-right-1\";a:3:{i:0;s:13:\"custom_html-3\";i:1;s:13:\"custom_html-4\";i:2;s:13:\"custom_html-5\";}s:17:\"header-main-right\";a:2:{i:0;s:13:\"custom_html-6\";i:1;s:27:\"acumec_widget_cart_search-1\";}s:15:\"header-top-left\";a:2:{i:0;s:13:\"custom_html-7\";i:1;s:13:\"custom_html-8\";}s:17:\"header-top-center\";a:1:{i:0;s:20:\"cms_socials_widget-1\";}s:16:\"header-top-right\";a:1:{i:0;s:17:\"fs-login-widget-1\";}s:26:\"sidebar-footer-bottom-left\";a:1:{i:0;s:6:\"text-4\";}s:27:\"sidebar-footer-bottom-right\";a:1:{i:0;s:20:\"cms_socials_widget-3\";}s:19:\"sidebar-news-letter\";a:1:{i:0;s:18:\"newsletterwidget-3\";}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:38:\"woocommerce_recently_viewed_products-1\";}s:19:\"sidebar-client-logo\";a:7:{i:0;s:13:\"media_image-1\";i:1;s:13:\"media_image-2\";i:2;s:13:\"media_image-3\";i:3;s:13:\"media_image-4\";i:4;s:13:\"media_image-5\";i:5;s:13:\"media_image-6\";i:6;s:13:\"media_image-7\";}s:20:\"sidebar-footer-top-1\";a:3:{i:0;s:20:\"cms_socials_widget-2\";i:1;s:6:\"text-1\";i:2;s:13:\"media_image-8\";}s:20:\"sidebar-footer-top-2\";a:1:{i:0;s:10:\"nav_menu-2\";}s:20:\"sidebar-footer-top-3\";a:1:{i:0;s:10:\"nav_menu-3\";}s:20:\"sidebar-footer-top-4\";a:1:{i:0;s:10:\"nav_menu-4\";}s:20:\"sidebar-footer-top-5\";a:2:{i:0;s:6:\"text-2\";i:1;s:18:\"newsletterwidget-2\";}s:28:\"sidebar-footer-top-layout2-1\";a:2:{i:0;s:6:\"text-3\";i:1;s:13:\"custom_html-9\";}s:28:\"sidebar-footer-top-layout2-2\";a:1:{i:0;s:19:\"cs_recent_post_v2-2\";}s:28:\"sidebar-footer-top-layout2-3\";a:1:{i:0;s:22:\"acumec_flickr_widget-2\";}}}}','yes'),(165,'theme_switched','','yes'),(166,'large_crop','1','yes'),(167,'medium_crop','1','yes'),(170,'recently_activated','a:0:{}','yes'),(174,'newsletter_logger_secret','46ba38f0','yes'),(176,'newsletter_main_first_install_time','1602589075','no'),(177,'newsletter_main','a:30:{s:11:\"return_path\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"sender_email\";s:24:\"[email protected]\";s:11:\"sender_name\";s:13:\"tropofoto.com\";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:8;s:19:\"disable_cron_notice\";i:0;s:13:\"do_shortcodes\";i:0;s:11:\"header_logo\";s:0:\"\";s:12:\"header_title\";s:13:\"tropofoto.com\";s:10:\"header_sub\";s:0:\"\";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:\"\";}','yes'),(178,'newsletter_main_info','a:15:{s:11:\"header_logo\";a:1:{s:2:\"id\";i:0;}s:12:\"header_title\";s:13:\"tropofoto.com\";s:10:\"header_sub\";s:0:\"\";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:\"\";}','yes'),(179,'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'),(180,'newsletter_main_version','1.6.3','yes'),(181,'newsletter_subscription_first_install_time','1602589075','no'),(182,'newsletter','a:14:{s:14:\"noconfirmation\";i:1;s:12:\"notify_email\";s:18:\"[email protected]\";s:8:\"multiple\";i:1;s:6:\"notify\";i:0;s:10:\"error_text\";s:102:\"<p>You cannot subscribe with the email address you entered, 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'),(183,'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'),(184,'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'),(185,'newsletter_profile','a:184:{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:10:\"name_error\";s:16:\"Name is required\";s:11:\"name_status\";i:0;s:10:\"name_rules\";i:0;s:7:\"surname\";s:9:\"Last name\";s:13:\"surname_error\";s:21:\"Last name is required\";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:13:\"privacy_error\";s:34:\"You must 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:13:\"profile_error\";s:34:\"A mandatory field is not filled in\";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'),(186,'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'),(187,'newsletter_subscription_version','2.2.7','yes'),(188,'newsletter_unsubscription_first_install_time','1602589075','no'),(189,'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'),(190,'newsletter_unsubscription_version','1.0.3','yes'),(191,'newsletter_profile_first_install_time','1602589075','no'),(192,'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'),(193,'newsletter_profile_version','1.1.0','yes'),(194,'newsletter_emails_first_install_time','1602589075','no'),(195,'newsletter_emails','a:1:{s:5:\"theme\";s:7:\"default\";}','yes'),(196,'newsletter_emails_theme_default','a:0:{}','no'),(197,'newsletter_emails_version','1.1.5','yes'),(198,'newsletter_users_first_install_time','1602589075','no'),(199,'newsletter_users','a:0:{}','yes'),(200,'newsletter_users_version','1.3.0','yes'),(201,'newsletter_statistics_first_install_time','1602589075','no'),(202,'newsletter_statistics','a:1:{s:3:\"key\";s:32:\"106873de9b8305a7fb31a689bb40a1d1\";}','yes'),(203,'newsletter_statistics_version','1.2.7','yes'),(204,'newsletter_install_time','1602589075','no'),(205,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:16:\"themepunch.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(206,'revslider_server_refresh','1602589076','yes'),(207,'revslider-update-check-short','1602589076','yes'),(208,'revslider-connection','1','yes'),(209,'revslider-update-hash','c9ebe508779e51bbd03eb75d7ed90af7','yes'),(210,'revslider-latest-version','6.2.23','yes'),(211,'revslider-stable-version','4.2','yes'),(212,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:6:\"6.2.17\";s:4:\"text\";s:283:\"<div style=\"display: block; background-color: #150A33;\"><a href=\"//www.themepunch.com/faq/wordpress-5-5-important-update-information/\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-b.tools/banners/important_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS630-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:{}}i:1;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:304:\"<div style=\"display: block; background-color: #F3F2F6;\"><a href=\"//www.sliderrevolution.com/get-on-board-the-slider-revolution-dashboard/?ref=iwantaccess\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-b.tools/banners/onboarding_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS999-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'),(213,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(214,'rs-addons-counter','28','yes'),(215,'revslider-addons','O:8:\"stdClass\":28:{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.0\";s:10:\"background\";s:81:\"//updates.themepunch-ext-b.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s: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.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.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.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.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.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.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:\"5.3.0\";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.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-b.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.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:84:\"//updates.themepunch-ext-b.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.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:71:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.2.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.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.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":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.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:77:\"//updates.themepunch-ext-b.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.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:76:\"//updates.themepunch-ext-b.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.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:72:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":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.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:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.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.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"5.4.6\";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.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:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}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.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:74:\"//updates.themepunch-ext-b.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:23:\"Display images in 360°\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"5.4.6\";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.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"5.4.6\";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.1.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"5.4.6\";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.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:77:\"//updates.themepunch-ext-b.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.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:76:\"//updates.themepunch-ext-b.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.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:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.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.7\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}}','yes'),(216,'revslider-library-check','1602589077','yes'),(217,'revslider-library-hash','182cddf4eb7341b26304629033cbbb48','yes'),(218,'rs-library','a:3:{s:4:\"hash\";s:32:\"182cddf4eb7341b26304629033cbbb48\";s:7:\"objects\";a:417:{i:529;a:14:{s:2:\"id\";s:3:\"529\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:528;a:14:{s:2:\"id\";s:3:\"528\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:527;a:14:{s:2:\"id\";s:3:\"527\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:526;a:14:{s:2:\"id\";s:3:\"526\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:525;a:14:{s:2:\"id\";s:3:\"525\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:524;a:14:{s:2:\"id\";s:3:\"524\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:523;a:14:{s:2:\"id\";s:3:\"523\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:522;a:14:{s:2:\"id\";s:3:\"522\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:521;a:14:{s:2:\"id\";s:3:\"521\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:520;a:14:{s:2:\"id\";s:3:\"520\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:519;a:14:{s:2:\"id\";s:3:\"519\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:518;a:14:{s:2:\"id\";s:3:\"518\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:517;a:14:{s:2:\"id\";s:3:\"517\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:516;a:14:{s:2:\"id\";s:3:\"516\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:515;a:14:{s:2:\"id\";s:3:\"515\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:514;a:14:{s:2:\"id\";s:3:\"514\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:513;a:14:{s:2:\"id\";s:3:\"513\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:512;a:14:{s:2:\"id\";s:3:\"512\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:511;a:14:{s:2:\"id\";s:3:\"511\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:510;a:14:{s:2:\"id\";s:3:\"510\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:509;a:14:{s:2:\"id\";s:3:\"509\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:508;a:14:{s:2:\"id\";s:3:\"508\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:507;a:14:{s:2:\"id\";s:3:\"507\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:506;a:14:{s:2:\"id\";s:3:\"506\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:505;a:14:{s:2:\"id\";s:3:\"505\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:504;a:14:{s:2:\"id\";s:3:\"504\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:503;a:14:{s:2:\"id\";s:3:\"503\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:502;a:14:{s:2:\"id\";s:3:\"502\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:501;a:14:{s:2:\"id\";s:3:\"501\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:500;a:14:{s:2:\"id\";s:3:\"500\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:499;a:14:{s:2:\"id\";s:3:\"499\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:498;a:14:{s:2:\"id\";s:3:\"498\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:497;a:14:{s:2:\"id\";s:3:\"497\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:496;a:14:{s:2:\"id\";s:3:\"496\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:495;a:14:{s:2:\"id\";s:3:\"495\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:494;a:14:{s:2:\"id\";s:3:\"494\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:493;a:14:{s:2:\"id\";s:3:\"493\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:492;a:14:{s:2:\"id\";s:3:\"492\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:491;a:14:{s:2:\"id\";s:3:\"491\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:490;a:14:{s:2:\"id\";s:3:\"490\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:489;a:14:{s:2:\"id\";s:3:\"489\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:488;a:14:{s:2:\"id\";s:3:\"488\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:487;a:14:{s:2:\"id\";s:3:\"487\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:486;a:14:{s:2:\"id\";s:3:\"486\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:485;a:14:{s:2:\"id\";s:3:\"485\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:484;a:14:{s:2:\"id\";s:3:\"484\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:3:\"483\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:482;a:14:{s:2:\"id\";s:3:\"482\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:481;a:14:{s:2:\"id\";s:3:\"481\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:480;a:14:{s:2:\"id\";s:3:\"480\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:479;a:13:{s:2:\"id\";s:3:\"479\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";}i:478;a:13:{s:2:\"id\";s:3:\"478\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";}i:477;a:13:{s:2:\"id\";s:3:\"477\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";}i:476;a:13:{s:2:\"id\";s:3:\"476\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:475;a:13:{s:2:\"id\";s:3:\"475\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:474;a:13:{s:2:\"id\";s:3:\"474\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:473;a:13:{s:2:\"id\";s:3:\"473\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:472;a:13:{s:2:\"id\";s:3:\"472\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:471;a:13:{s:2:\"id\";s:3:\"471\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:470;a:13:{s:2:\"id\";s:3:\"470\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:469;a:13:{s:2:\"id\";s:3:\"469\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:468;a:13:{s:2:\"id\";s:3:\"468\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:467;a:13:{s:2:\"id\";s:3:\"467\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:466;a:13:{s:2:\"id\";s:3:\"466\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:465;a:13:{s:2:\"id\";s:3:\"465\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:464;a:13:{s:2:\"id\";s:3:\"464\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:463;a:13:{s:2:\"id\";s:3:\"463\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:462;a:13:{s:2:\"id\";s:3:\"462\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:461;a:13:{s:2:\"id\";s:3:\"461\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:460;a:13:{s:2:\"id\";s:3:\"460\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:459;a:13:{s:2:\"id\";s:3:\"459\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:458;a:13:{s:2:\"id\";s:3:\"458\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:457;a:13:{s:2:\"id\";s:3:\"457\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:456;a:13:{s:2:\"id\";s:3:\"456\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:455;a:13:{s:2:\"id\";s:3:\"455\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:454;a:13:{s:2:\"id\";s:3:\"454\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:453;a:13:{s:2:\"id\";s:3:\"453\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:452;a:13:{s:2:\"id\";s:3:\"452\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:451;a:13:{s:2:\"id\";s:3:\"451\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:450;a:13:{s:2:\"id\";s:3:\"450\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:449;a:13:{s:2:\"id\";s:3:\"449\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:448;a:13:{s:2:\"id\";s:3:\"448\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:447;a:13:{s:2:\"id\";s:3:\"447\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:446;a:13:{s:2:\"id\";s:3:\"446\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:445;a:13:{s:2:\"id\";s:3:\"445\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:444;a:13:{s:2:\"id\";s:3:\"444\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:443;a:13:{s:2:\"id\";s:3:\"443\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:442;a:13:{s:2:\"id\";s:3:\"442\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:441;a:13:{s:2:\"id\";s:3:\"441\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:440;a:13:{s:2:\"id\";s:3:\"440\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:439;a:13:{s:2:\"id\";s:3:\"439\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:438;a:13:{s:2:\"id\";s:3:\"438\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:437;a:13:{s:2:\"id\";s:3:\"437\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:436;a:13:{s:2:\"id\";s:3:\"436\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:435;a:13:{s:2:\"id\";s:3:\"435\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:434;a:13:{s:2:\"id\";s:3:\"434\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:433;a:13:{s:2:\"id\";s:3:\"433\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:432;a:13:{s:2:\"id\";s:3:\"432\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:431;a:13:{s:2:\"id\";s:3:\"431\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:430;a:13:{s:2:\"id\";s:3:\"430\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:429;a:13:{s:2:\"id\";s:3:\"429\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:428;a:13:{s:2:\"id\";s:3:\"428\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:427;a:13:{s:2:\"id\";s:3:\"427\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:426;a:13:{s:2:\"id\";s:3:\"426\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:425;a:13:{s:2:\"id\";s:3:\"425\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:424;a:13:{s:2:\"id\";s:3:\"424\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:423;a:13:{s:2:\"id\";s:3:\"423\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:422;a:13:{s:2:\"id\";s:3:\"422\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:421;a:13:{s:2:\"id\";s:3:\"421\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:420;a:13:{s:2:\"id\";s:3:\"420\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:419;a:13:{s:2:\"id\";s:3:\"419\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:418;a:13:{s:2:\"id\";s:3:\"418\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:417;a:13:{s:2:\"id\";s:3:\"417\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:416;a:13:{s:2:\"id\";s:3:\"416\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:415;a:13:{s:2:\"id\";s:3:\"415\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:414;a:13:{s:2:\"id\";s:3:\"414\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:413;a:13:{s:2:\"id\";s:3:\"413\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:412;a:13:{s:2:\"id\";s:3:\"412\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:411;a:13:{s:2:\"id\";s:3:\"411\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:410;a:13:{s:2:\"id\";s:3:\"410\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:409;a:13:{s:2:\"id\";s:3:\"409\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:408;a:13:{s:2:\"id\";s:3:\"408\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:407;a:13:{s:2:\"id\";s:3:\"407\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:406;a:13:{s:2:\"id\";s:3:\"406\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:405;a:13:{s:2:\"id\";s:3:\"405\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:404;a:13:{s:2:\"id\";s:3:\"404\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:403;a:13:{s:2:\"id\";s:3:\"403\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:402;a:13:{s:2:\"id\";s:3:\"402\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:401;a:13:{s:2:\"id\";s:3:\"401\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:400;a:13:{s:2:\"id\";s:3:\"400\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:399;a:13:{s:2:\"id\";s:3:\"399\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:398;a:13:{s:2:\"id\";s:3:\"398\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:397;a:13:{s:2:\"id\";s:3:\"397\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:396;a:13:{s:2:\"id\";s:3:\"396\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:395;a:13:{s:2:\"id\";s:3:\"395\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:394;a:13:{s:2:\"id\";s:3:\"394\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:393;a:13:{s:2:\"id\";s:3:\"393\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:392;a:13:{s:2:\"id\";s:3:\"392\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:391;a:13:{s:2:\"id\";s:3:\"391\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:390;a:13:{s:2:\"id\";s:3:\"390\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:389;a:13:{s:2:\"id\";s:3:\"389\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:388;a:13:{s:2:\"id\";s:3:\"388\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:387;a:13:{s:2:\"id\";s:3:\"387\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:386;a:13:{s:2:\"id\";s:3:\"386\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:385;a:13:{s:2:\"id\";s:3:\"385\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:384;a:13:{s:2:\"id\";s:3:\"384\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:383;a:13:{s:2:\"id\";s:3:\"383\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:382;a:13:{s:2:\"id\";s:3:\"382\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:381;a:13:{s:2:\"id\";s:3:\"381\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:380;a:13:{s:2:\"id\";s:3:\"380\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:379;a:13:{s:2:\"id\";s:3:\"379\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:378;a:13:{s:2:\"id\";s:3:\"378\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:377;a:13:{s:2:\"id\";s:3:\"377\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:376;a:13:{s:2:\"id\";s:3:\"376\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:375;a:13:{s:2:\"id\";s:3:\"375\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:374;a:13:{s:2:\"id\";s:3:\"374\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:373;a:13:{s:2:\"id\";s:3:\"373\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:372;a:13:{s:2:\"id\";s:3:\"372\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:371;a:13:{s:2:\"id\";s:3:\"371\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:370;a:13:{s:2:\"id\";s:3:\"370\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:369;a:13:{s:2:\"id\";s:3:\"369\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:368;a:13:{s:2:\"id\";s:3:\"368\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:367;a:13:{s:2:\"id\";s:3:\"367\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:366;a:13:{s:2:\"id\";s:3:\"366\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:365;a:13:{s:2:\"id\";s:3:\"365\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:364;a:13:{s:2:\"id\";s:3:\"364\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:363;a:13:{s:2:\"id\";s:3:\"363\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:362;a:13:{s:2:\"id\";s:3:\"362\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:361;a:13:{s:2:\"id\";s:3:\"361\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:360;a:13:{s:2:\"id\";s:3:\"360\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:359;a:13:{s:2:\"id\";s:3:\"359\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:358;a:13:{s:2:\"id\";s:3:\"358\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:357;a:13:{s:2:\"id\";s:3:\"357\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:356;a:13:{s:2:\"id\";s:3:\"356\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:355;a:13:{s:2:\"id\";s:3:\"355\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:354;a:13:{s:2:\"id\";s:3:\"354\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:353;a:13:{s:2:\"id\";s:3:\"353\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:352;a:13:{s:2:\"id\";s:3:\"352\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:351;a:13:{s:2:\"id\";s:3:\"351\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:350;a:13:{s:2:\"id\";s:3:\"350\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:349;a:13:{s:2:\"id\";s:3:\"349\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:348;a:13:{s:2:\"id\";s:3:\"348\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:347;a:13:{s:2:\"id\";s:3:\"347\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:346;a:13:{s:2:\"id\";s:3:\"346\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:345;a:13:{s:2:\"id\";s:3:\"345\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:344;a:13:{s:2:\"id\";s:3:\"344\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:343;a:13:{s:2:\"id\";s:3:\"343\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:342;a:13:{s:2:\"id\";s:3:\"342\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:341;a:13:{s:2:\"id\";s:3:\"341\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:340;a:13:{s:2:\"id\";s:3:\"340\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:339;a:13:{s:2:\"id\";s:3:\"339\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:337;a:13:{s:2:\"id\";s:3:\"337\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:336;a:13:{s:2:\"id\";s:3:\"336\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:335;a:13:{s:2:\"id\";s:3:\"335\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:334;a:13:{s:2:\"id\";s:3:\"334\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:333;a:13:{s:2:\"id\";s:3:\"333\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:332;a:13:{s:2:\"id\";s:3:\"332\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:331;a:13:{s:2:\"id\";s:3:\"331\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:330;a:13:{s:2:\"id\";s:3:\"330\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:329;a:13:{s:2:\"id\";s:3:\"329\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:328;a:13:{s:2:\"id\";s:3:\"328\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";}i:327;a:13:{s:2:\"id\";s:3:\"327\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:326;a:13:{s:2:\"id\";s:3:\"326\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:325;a:13:{s:2:\"id\";s:3:\"325\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:324;a:13:{s:2:\"id\";s:3:\"324\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:322;a:13:{s:2:\"id\";s:3:\"322\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:321;a:13:{s:2:\"id\";s:3:\"321\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:320;a:13:{s:2:\"id\";s:3:\"320\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:319;a:13:{s:2:\"id\";s:3:\"319\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:318;a:13:{s:2:\"id\";s:3:\"318\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:317;a:13:{s:2:\"id\";s:3:\"317\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:316;a:13:{s:2:\"id\";s:3:\"316\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:315;a:13:{s:2:\"id\";s:3:\"315\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:314;a:13:{s:2:\"id\";s:3:\"314\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:313;a:13:{s:2:\"id\";s:3:\"313\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:312;a:13:{s:2:\"id\";s:3:\"312\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";}i:311;a:13:{s:2:\"id\";s:3:\"311\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:310;a:13:{s:2:\"id\";s:3:\"310\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:309;a:13:{s:2:\"id\";s:3:\"309\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:308;a:13:{s:2:\"id\";s:3:\"308\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:307;a:13:{s:2:\"id\";s:3:\"307\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:306;a:13:{s:2:\"id\";s:3:\"306\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:305;a:13:{s:2:\"id\";s:3:\"305\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:304;a:13:{s:2:\"id\";s:3:\"304\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:303;a:13:{s:2:\"id\";s:3:\"303\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:302;a:13:{s:2:\"id\";s:3:\"302\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:301;a:13:{s:2:\"id\";s:3:\"301\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:300;a:13:{s:2:\"id\";s:3:\"300\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:299;a:13:{s:2:\"id\";s:3:\"299\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:298;a:13:{s:2:\"id\";s:3:\"298\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:297;a:13:{s:2:\"id\";s:3:\"297\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:296;a:13:{s:2:\"id\";s:3:\"296\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:295;a:13:{s:2:\"id\";s:3:\"295\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:294;a:13:{s:2:\"id\";s:3:\"294\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:293;a:13:{s:2:\"id\";s:3:\"293\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:292;a:13:{s:2:\"id\";s:3:\"292\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:291;a:13:{s:2:\"id\";s:3:\"291\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:290;a:13:{s:2:\"id\";s:3:\"290\";s:4:\"type\";s:1:\"4\";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:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:238;a:14:{s:2:\"id\";s:3:\"238\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:237;a:14:{s:2:\"id\";s:3:\"237\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:236;a:14:{s:2:\"id\";s:3:\"236\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:235;a:14:{s:2:\"id\";s:3:\"235\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:234;a:14:{s:2:\"id\";s:3:\"234\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:233;a:14:{s:2:\"id\";s:3:\"233\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:232;a:14:{s:2:\"id\";s:3:\"232\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:231;a:14:{s:2:\"id\";s:3:\"231\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:230;a:14:{s:2:\"id\";s:3:\"230\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:229;a:14:{s:2:\"id\";s:3:\"229\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:198;a:13:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:13:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:13:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:13:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:13:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:13:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:13:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:13:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:13:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:13:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:13:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:13:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:13:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:13:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:13:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:13:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:13:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:13:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:13:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:13:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:13:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:13:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:13:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:13:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:13:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:13:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:13:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:13:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:13:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:13:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:13:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:13:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:13:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:13:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:13:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:13:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:13:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:13:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:13:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:13:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:13:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:13:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:13:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:13:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:13:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:13:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:13:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:13:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:13:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:13:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:13:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:13:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:13:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:13:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:13:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:13:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:13:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:13:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:13:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:13:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:13:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:13:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:13:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:13:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:13:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:13:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:13:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:13:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:13:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:13:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:13:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:13:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:13:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:13:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:13:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:13:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:13:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:13:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:13:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:13:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:13:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:13:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:13:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:13:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:13:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:13:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:13:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:13:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:13:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:13:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:13:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:13:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:13:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:13:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:13:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:13:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:13:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:13:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:13:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:13:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:13:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:13:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:13:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:13:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:13:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:13:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:13:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:13:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:13:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:13:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:13:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:13:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:13:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:13:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:13:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:13:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:13:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:13:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:13:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:13:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:13:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:13:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:13:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:13:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:13:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:13:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:13:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:13:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:13:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:13:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:13:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:13:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:13:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:13:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:13:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:13:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:13:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:13:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:13:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:13:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:13:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:13:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:13:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:13:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:13:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:13:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:13:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:13:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:13:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:13:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:13:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:13:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:13:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:13:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:13:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:13:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:13:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:13:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:13:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:13:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:13:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:13:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:13:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:13:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:13:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:13:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:13:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:13:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:13:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"data\";s:0:\"\";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:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}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'),(219,'revslider-templates-check','1602589078','yes'),(220,'revslider-templates-hash','b2c211f95b22b6b6950b2644dca361fc','yes'),(221,'rs-templates-new','','no');
INSERT INTO `wp_options` VALUES (222,'rs-templates','a:3:{s:4:\"hash\";s:32:\"b2c211f95b22b6b6950b2644dca361fc\";s:6:\"slider\";a:464:{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:22:{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.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: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;}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: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: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: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: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.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: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.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: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.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:\"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.3\";s:8:\"required\";s:6:\"6.2.22\";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.5\";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: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: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:2:{i:0;s:4:\"hero\";i: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:\"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:2:{i:0;s:4:\"hero\";i: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:\"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: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: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.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:\"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.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:\"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.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 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:25:{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.1\";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;}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;}}s:6:\"slides\";a:461:{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\";}}}}','no'),(223,'rs-templates-counter','464','no'),(225,'action_scheduler_hybrid_store_demarkation','7','yes'),(226,'schema-ActionScheduler_StoreSchema','3.0.1602589081','yes'),(227,'schema-ActionScheduler_LoggerSchema','2.0.1602589081','yes'),(228,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"380\";s:6:\"height\";s:3:\"360\";s:4:\"crop\";i:1;}','yes'),(229,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"760\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";i:1;}','yes'),(230,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"200\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";i:1;}','yes'),(233,'woocommerce_schema_version','430','yes'),(234,'woocommerce_store_address','','yes'),(235,'woocommerce_store_address_2','','yes'),(236,'woocommerce_store_city','','yes'),(237,'woocommerce_default_country','GB','yes'),(238,'woocommerce_store_postcode','','yes'),(239,'woocommerce_allowed_countries','all','yes'),(240,'woocommerce_all_except_countries','','yes'),(241,'woocommerce_specific_allowed_countries','','yes'),(242,'woocommerce_ship_to_countries','','yes'),(243,'woocommerce_specific_ship_to_countries','','yes'),(244,'woocommerce_default_customer_address','base','yes'),(245,'woocommerce_calc_taxes','no','yes'),(246,'woocommerce_enable_coupons','yes','yes'),(247,'woocommerce_calc_discounts_sequentially','no','no'),(248,'woocommerce_currency','GBP','yes'),(249,'woocommerce_currency_pos','left','yes'),(250,'woocommerce_price_thousand_sep',',','yes'),(251,'woocommerce_price_decimal_sep','.','yes'),(252,'woocommerce_price_num_decimals','2','yes'),(253,'woocommerce_shop_page_id','507','yes'),(254,'woocommerce_cart_redirect_after_add','no','yes'),(255,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(256,'woocommerce_placeholder_image','7','yes'),(257,'woocommerce_weight_unit','kg','yes'),(258,'woocommerce_dimension_unit','cm','yes'),(259,'woocommerce_enable_reviews','yes','yes'),(260,'woocommerce_review_rating_verification_label','yes','no'),(261,'woocommerce_review_rating_verification_required','no','no'),(262,'woocommerce_enable_review_rating','yes','yes'),(263,'woocommerce_review_rating_required','yes','no'),(264,'woocommerce_manage_stock','yes','yes'),(265,'woocommerce_hold_stock_minutes','60','no'),(266,'woocommerce_notify_low_stock','yes','no'),(267,'woocommerce_notify_no_stock','yes','no'),(268,'woocommerce_stock_email_recipient','[email protected]','no'),(269,'woocommerce_notify_low_stock_amount','2','no'),(270,'woocommerce_notify_no_stock_amount','0','yes'),(271,'woocommerce_hide_out_of_stock_items','no','yes'),(272,'woocommerce_stock_format','','yes'),(273,'woocommerce_file_download_method','force','no'),(274,'woocommerce_downloads_require_login','no','no'),(275,'woocommerce_downloads_grant_access_after_payment','yes','no'),(276,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(277,'woocommerce_prices_include_tax','no','yes'),(278,'woocommerce_tax_based_on','shipping','yes'),(279,'woocommerce_shipping_tax_class','inherit','yes'),(280,'woocommerce_tax_round_at_subtotal','no','yes'),(281,'woocommerce_tax_classes','','yes'),(282,'woocommerce_tax_display_shop','excl','yes'),(283,'woocommerce_tax_display_cart','excl','yes'),(284,'woocommerce_price_display_suffix','','yes'),(285,'woocommerce_tax_total_display','itemized','no'),(286,'woocommerce_enable_shipping_calc','yes','no'),(287,'woocommerce_shipping_cost_requires_address','no','yes'),(288,'woocommerce_ship_to_destination','billing','no'),(289,'woocommerce_shipping_debug_mode','no','yes'),(290,'woocommerce_enable_guest_checkout','yes','no'),(291,'woocommerce_enable_checkout_login_reminder','no','no'),(292,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(293,'woocommerce_enable_myaccount_registration','no','no'),(294,'woocommerce_registration_generate_username','yes','no'),(295,'woocommerce_registration_generate_password','yes','no'),(296,'woocommerce_erasure_request_removes_order_data','no','no'),(297,'woocommerce_erasure_request_removes_download_data','no','no'),(298,'woocommerce_allow_bulk_remove_personal_data','no','no'),(299,'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'),(300,'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'),(301,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(302,'woocommerce_trash_pending_orders','','no'),(303,'woocommerce_trash_failed_orders','','no'),(304,'woocommerce_trash_cancelled_orders','','no'),(305,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(306,'woocommerce_email_from_name','tropofoto.com','no'),(307,'woocommerce_email_from_address','[email protected]','no'),(308,'woocommerce_email_header_image','','no'),(309,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(310,'woocommerce_email_base_color','#96588a','no'),(311,'woocommerce_email_background_color','#f7f7f7','no'),(312,'woocommerce_email_body_background_color','#ffffff','no'),(313,'woocommerce_email_text_color','#3c3c3c','no'),(314,'woocommerce_cart_page_id','508','no'),(315,'woocommerce_checkout_page_id','509','no'),(316,'woocommerce_myaccount_page_id','510','no'),(317,'woocommerce_terms_page_id','','no'),(318,'woocommerce_force_ssl_checkout','no','yes'),(319,'woocommerce_unforce_ssl_checkout','no','yes'),(320,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(321,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(322,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(323,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(324,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(325,'woocommerce_myaccount_orders_endpoint','orders','yes'),(326,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(327,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(328,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(329,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(330,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(331,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(332,'woocommerce_logout_endpoint','customer-logout','yes'),(333,'woocommerce_api_enabled','no','yes'),(334,'woocommerce_allow_tracking','no','no'),(335,'woocommerce_show_marketplace_suggestions','yes','no'),(336,'woocommerce_single_image_width','600','yes'),(337,'woocommerce_thumbnail_image_width','300','yes'),(338,'woocommerce_checkout_highlight_required_fields','yes','yes'),(339,'woocommerce_demo_store','no','no'),(340,'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'),(341,'current_theme_supports_woocommerce','yes','yes'),(342,'woocommerce_queue_flush_rewrite_rules','no','yes'),(345,'default_product_cat','16','yes'),(346,'woocommerce_admin_notices','a:2:{i:0;s:7:\"install\";i:1;s:20:\"no_secure_connection\";}','yes'),(349,'woocommerce_version','4.5.2','yes'),(350,'woocommerce_db_version','4.5.2','yes'),(351,'woocommerce_homescreen_enabled','yes','yes'),(356,'action_scheduler_lock_async-request-runner','1602589700','yes'),(357,'revslider_update_version','6.2.0','yes'),(358,'redux_version_upgraded_from','3.6.9','yes'),(359,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"NcQm2dO2OzxuXiRViU40K7FKP2CkiBVE\";}','yes'),(361,'widget_fs-login-widget','a:2:{i:1;a:10:{s:2:\"id\";i:1546663623;s:5:\"title\";s:0:\"\";s:11:\"title_login\";s:5:\"Login\";s:14:\"title_register\";s:8:\"Register\";s:4:\"type\";s:4:\"both\";s:5:\"style\";s:11:\"fs-dropdown\";s:6:\"active\";s:8:\"register\";s:8:\"num_link\";s:1:\"1\";s:17:\"login_description\";s:0:\"\";s:20:\"register_description\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(362,'widget_znews-twitter-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(363,'widget_newsletterwidget','a:4:{i:1;a:5:{s:5:\"title\";s:9:\"SUBSCRIBE\";s:4:\"text\";s:30:\"Get latest updates and offers.\";s:12:\"lists_layout\";s:8:\"dropdown\";s:17:\"lists_empty_label\";s:0:\"\";s:17:\"lists_field_label\";s:0:\"\";}i:2;a:5:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:12:\"lists_layout\";s:0:\"\";s:17:\"lists_empty_label\";s:0:\"\";s:17:\"lists_field_label\";s:0:\"\";}i:3;a:5:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:12:\"lists_layout\";s:8:\"dropdown\";s:17:\"lists_empty_label\";s:0:\"\";s:17:\"lists_field_label\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(364,'widget_newsletterwidgetminimal','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(365,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(366,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(367,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(368,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(369,'widget_woocommerce_price_filter','a:2:{i:1;a:1:{s:5:\"title\";s:15:\"Filter by price\";}s:12:\"_multiwidget\";i:1;}','yes'),(370,'widget_woocommerce_product_categories','a:2:{i:1;a:8:{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:12:\"_multiwidget\";i:1;}','yes'),(371,'widget_woocommerce_product_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(372,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(373,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(374,'widget_woocommerce_recently_viewed_products','a:2:{i:1;a:2:{s:5:\"title\";s:15:\"Recent Products\";s:6:\"number\";i:3;}s:12:\"_multiwidget\";i:1;}','yes'),(375,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(376,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(377,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(378,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(379,'widget_acumec_widget_cart_search','a:2:{i:1;a:7:{s:5:\"title\";s:0:\"\";s:9:\"show_cart\";i:0;s:24:\"show_cart_contents_count\";i:0;s:18:\"show_cart_subtotal\";i:0;s:11:\"show_search\";i:1;s:16:\"search_bar_style\";s:8:\"dropdown\";s:9:\"add_class\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(380,'widget_cms_socials_widget','a:4:{i:1;a:22:{s:5:\"title\";s:0:\"\";s:12:\"icon_class_1\";s:14:\"fa fa-facebook\";s:6:\"link_1\";s:1:\"#\";s:12:\"icon_class_2\";s:13:\"fa fa-twitter\";s:6:\"link_2\";s:1:\"#\";s:12:\"icon_class_3\";s:17:\"fa fa-google-plus\";s:6:\"link_3\";s:1:\"#\";s:12:\"icon_class_4\";s:14:\"fa fa-linkedin\";s:6:\"link_4\";s:1:\"#\";s:12:\"icon_class_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:12:\"icon_class_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:12:\"icon_class_7\";s:0:\"\";s:6:\"link_7\";s:0:\"\";s:12:\"icon_class_8\";s:0:\"\";s:6:\"link_8\";s:0:\"\";s:12:\"icon_class_9\";s:0:\"\";s:6:\"link_9\";s:0:\"\";s:13:\"icon_class_10\";s:0:\"\";s:7:\"link_10\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}i:2;a:22:{s:5:\"title\";s:0:\"\";s:12:\"icon_class_1\";s:14:\"fa fa-facebook\";s:6:\"link_1\";s:1:\"#\";s:12:\"icon_class_2\";s:13:\"fa fa-twitter\";s:6:\"link_2\";s:1:\"#\";s:12:\"icon_class_3\";s:17:\"fa fa-google-plus\";s:6:\"link_3\";s:1:\"#\";s:12:\"icon_class_4\";s:14:\"fa fa-linkedin\";s:6:\"link_4\";s:1:\"#\";s:12:\"icon_class_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:12:\"icon_class_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:12:\"icon_class_7\";s:0:\"\";s:6:\"link_7\";s:0:\"\";s:12:\"icon_class_8\";s:0:\"\";s:6:\"link_8\";s:0:\"\";s:12:\"icon_class_9\";s:0:\"\";s:6:\"link_9\";s:0:\"\";s:13:\"icon_class_10\";s:0:\"\";s:7:\"link_10\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}i:3;a:22:{s:5:\"title\";s:0:\"\";s:12:\"icon_class_1\";s:14:\"fa fa-facebook\";s:6:\"link_1\";s:1:\"#\";s:12:\"icon_class_2\";s:13:\"fa fa-twitter\";s:6:\"link_2\";s:1:\"#\";s:12:\"icon_class_3\";s:17:\"fa fa-google-plus\";s:6:\"link_3\";s:1:\"#\";s:12:\"icon_class_4\";s:14:\"fa fa-linkedin\";s:6:\"link_4\";s:1:\"#\";s:12:\"icon_class_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:12:\"icon_class_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:12:\"icon_class_7\";s:0:\"\";s:6:\"link_7\";s:0:\"\";s:12:\"icon_class_8\";s:0:\"\";s:6:\"link_8\";s:0:\"\";s:12:\"icon_class_9\";s:0:\"\";s:6:\"link_9\";s:0:\"\";s:13:\"icon_class_10\";s:0:\"\";s:7:\"link_10\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(381,'widget_cs_recent_post_v2','a:3:{i:1;a:7:{s:5:\"title\";s:11:\"RECENT NEWS\";s:9:\"show_date\";s:1:\"1\";s:9:\"show_decs\";N;s:10:\"show_image\";N;s:12:\"show_comment\";N;s:6:\"number\";i:3;s:11:\"extra_class\";s:0:\"\";}i:2;a:7:{s:5:\"title\";s:12:\"RECENT POSTS\";s:9:\"show_date\";N;s:9:\"show_decs\";N;s:10:\"show_image\";N;s:12:\"show_comment\";N;s:6:\"number\";i:5;s:11:\"extra_class\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(382,'widget_cms_image','a:3:{i:1;a:8:{s:5:\"title\";s:20:\"HOW CAN WE HELP YOU?\";s:5:\"image\";s:2:\"99\";s:4:\"link\";s:12:\"?page_id=481\";s:4:\"size\";s:4:\"full\";s:6:\"target\";s:0:\"\";s:4:\"name\";s:0:\"\";s:11:\"description\";s:86:\"Contact us at the Acumec WP office nearest to you or submit a business inquiry online.\";s:10:\"link_title\";s:10:\"Contact Us\";}i:2;a:6:{s:5:\"title\";s:20:\"HOW CAN WE HELP YOU?\";s:5:\"image\";s:2:\"99\";s:4:\"link\";s:1:\"#\";s:4:\"size\";s:4:\"full\";s:6:\"target\";s:0:\"\";s:11:\"description\";s:86:\"Contact us at the Acumec WP office nearest to you or submit a business inquiry online.\";}s:12:\"_multiwidget\";i:1;}','yes'),(383,'widget_acumec_recent_post','a:3:{i:1;a:7:{s:5:\"title\";s:11:\"RECOMMENDED\";s:11:\"number_post\";s:1:\"3\";s:9:\"ordertype\";s:7:\"popular\";s:12:\"showreadmore\";s:1:\"0\";s:8:\"showdate\";s:1:\"0\";s:9:\"showimage\";s:1:\"0\";s:9:\"showviews\";s:1:\"0\";}i:2;a:7:{s:5:\"title\";s:11:\"RECOMMENDED\";s:11:\"number_post\";s:1:\"3\";s:9:\"ordertype\";s:7:\"popular\";s:12:\"showreadmore\";s:1:\"0\";s:8:\"showdate\";s:1:\"0\";s:9:\"showimage\";s:1:\"0\";s:9:\"showviews\";s:1:\"0\";}s:12:\"_multiwidget\";i:1;}','yes'),(384,'widget_acumec_flickr_widget','a:3:{i:1;a:5:{s:5:\"title\";s:13:\"FLICKR PHOTOS\";s:9:\"flickr_id\";s:13:\"143035746@N04\";s:11:\"description\";s:0:\"\";s:6:\"number\";s:1:\"6\";s:10:\"stream_url\";s:0:\"\";}i:2;a:5:{s:5:\"title\";s:13:\"FLICKR PHOTOS\";s:9:\"flickr_id\";s:13:\"157733994@N08\";s:11:\"description\";s:0:\"\";s:6:\"number\";s:1:\"6\";s:10:\"stream_url\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(385,'widget_cms_testimonials','a:2:{i:1;a:7:{s:5:\"title\";s:12:\"TESTIMONIALS\";s:5:\"image\";s:3:\"220\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:0:\"\";s:11:\"description\";s:167:\"“ Acumec WP really helped us achieve our financial goals. The slick presentation along with fan tastic readalility ensures that our finanvial standing is stabble. \"\";s:4:\"name\";s:11:\"NORMAY ANNI\";s:8:\"position\";s:16:\"Graphic Designer\";}s:12:\"_multiwidget\";i:1;}','yes'),(388,'woocommerce_admin_version','1.5.0','yes'),(389,'woocommerce_admin_install_timestamp','1602589089','yes'),(392,'wc_admin_note_home_screen_feedback_homescreen_accessed','1602589090','yes'),(395,'vc_version','6.4.1','yes'),(397,'wc_blocks_db_schema_version','260','yes'),(398,'opt_theme_options','a:168:{s:8:\"last_tab\";s:1:\"1\";s:14:\"general_layout\";s:0:\"\";s:10:\"body_width\";a:2:{s:5:\"width\";s:6:\"1238px\";s:5:\"units\";s:2:\"px\";}s:18:\"general_background\";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: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_background\";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: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:19:\"general_back_to_top\";s:1:\"1\";s:13:\"enable_header\";s:1:\"1\";s:13:\"header_layout\";s:7:\"default\";s:14:\"menu_fullwidth\";s:0:\"\";s:16:\"menu_transparent\";s:1:\"0\";s:11:\"menu_sticky\";s:1:\"1\";s:13:\"border_bottom\";s:0:\"\";s:12:\"border_color\";s:11:\"transparent\";s:9:\"main_logo\";a:9:{s:3:\"url\";s:68:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo.png\";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:\"\";}s:10:\"main_logo1\";a:9:{s:3:\"url\";s:73:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_blue.png\";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:\"\";}s:11:\"sticky_logo\";a:9:{s:3:\"url\";s:73:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_blue.png\";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:\"\";}s:16:\"transparent_logo\";a:9:{s:3:\"url\";s:74:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_white.png\";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:\"\";}s:10:\"main_logo2\";a:9:{s:3:\"url\";s:74:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_white.png\";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:\"\";}s:12:\"sticky_logo1\";a:9:{s:3:\"url\";s:74:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_white.png\";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:\"\";}s:15:\"logo_max_height\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:17:\"enable_header_top\";s:1:\"0\";s:21:\"header_top_full_width\";s:0:\"\";s:21:\"header_top_typography\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"header_top_background\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:27:\"header_top_background_image\";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:79:\"http://tropofoto.com/wp-content/uploads/revslider/slaido_18/18_c_background.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1628\";s:6:\"height\";s:3:\"850\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:87:\"http://tropofoto.com/wp-content/uploads/revslider/slaido_18/18_c_background-380x380.jpg\";}}s:21:\"header_top_text_color\";s:0:\"\";s:21:\"header_top_icon_color\";s:0:\"\";s:23:\"header_top_border_color\";s:0:\"\";s:21:\"header_top_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:24:\"header_middle_full_width\";s:0:\"\";s:24:\"header_middle_typography\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:24:\"header_middle_background\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:30:\"header_middle_background_image\";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:24:\"header_middle_text_color\";s:0:\"\";s:24:\"header_middle_icon_color\";s:0:\"\";s:27:\"header_middle_icon_fontsize\";a:1:{s:9:\"font-size\";s:0:\"\";}s:26:\"header_middle_border_color\";s:0:\"\";s:31:\"header_middle_border_dimensions\";a:3:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:24:\"header_middle_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:15:\"enable_download\";s:1:\"1\";s:16:\"select_file_type\";s:1:\"2\";s:14:\"download_title\";s:17:\"DOWNLOAD BROCHURE\";s:11:\"file_upload\";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:\"\";}s:13:\"link_download\";s:167:\"https://themeforest.net/item/acumec-business-multipurpose-wordpress-theme/22163778?ref=SpyroPress&license=regular&open_purchase_for_item_id=22163778&purchasable=source\";s:25:\"download_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:19:\"download_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:12:\"menu_padding\";a:5:{s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:12:\"padding-left\";s:0:\"\";s:5:\"units\";s:0:\"\";}s:23:\"header_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:35:\"header_transparent_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:30:\"header_sticky_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:20:\"main_menu_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";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:17:\"header_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:19:\"sub_menu_background\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:24:\"submenu_background_image\";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:16:\"menu_hover_color\";s:0:\"\";s:19:\"sub_menu_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:19:\"menu_mobile_padding\";a:5:{s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:12:\"padding-left\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:30:\"header_mobile_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:30:\"header_mobile_background_image\";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:27:\"main_menu_mobile_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";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:24:\"header_mobile_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:27:\"page_title_background_color\";a:3:{s:5:\"color\";s:7:\"#2a2a2a\";s:5:\"alpha\";s:3:\"0.5\";s:4:\"rgba\";s:18:\"rgba(42,42,42,0.5)\";}s:27:\"page_title_background_image\";a:6:{s:17:\"background-repeat\";s:9:\"no-repeat\";s:15:\"background-size\";s:5:\"cover\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:13:\"center center\";s:16:\"background-image\";s:62:\"http://tropofoto.com/wp-content/uploads/2018/04/page-title.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:2:\"14\";s:6:\"height\";s:3:\"250\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"http://tropofoto.com/wp-content/uploads/2018/04/page-title-380x250.jpg\";}}s:17:\"page_title_layout\";s:1:\"2\";s:16:\"page_title_align\";s:11:\"text-center\";s:21:\"page_title_typography\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:17:\"page_title_height\";a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:21:\"breadcrumb_typography\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"breadcrumb_link_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:12:\"archive_meta\";s:1:\"1\";s:14:\"archive_layout\";s:5:\"right\";s:14:\"archive_author\";s:1:\"1\";s:12:\"archive_date\";s:1:\"1\";s:18:\"archive_categories\";s:1:\"1\";s:15:\"archive_comment\";s:1:\"0\";s:11:\"archive_tag\";s:1:\"0\";s:16:\"archive_readmore\";s:1:\"1\";s:11:\"word_number\";s:2:\"20\";s:25:\"page_show_frontend_editor\";s:1:\"0\";s:13:\"single_layout\";s:5:\"right\";s:21:\"single_layout_project\";s:5:\"right\";s:26:\"single_layout_case_studies\";s:5:\"right\";s:21:\"single_layout_service\";s:4:\"full\";s:18:\"single_layout_team\";s:4:\"full\";s:24:\"single_page_title_layout\";s:1:\"1\";s:34:\"single_page_title_background_color\";a:3:{s:5:\"color\";s:7:\"#e90000\";s:5:\"alpha\";s:4:\"0.16\";s:4:\"rgba\";s:18:\"rgba(233,0,0,0.16)\";}s:34:\"single_page_title_background_image\";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:73:\"http://tropofoto.com/wp-content/uploads/revslider/slaido_70/70_c_back.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1508\";s:6:\"height\";s:3:\"850\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:81:\"http://tropofoto.com/wp-content/uploads/revslider/slaido_70/70_c_back-380x380.jpg\";}}s:11:\"single_date\";s:1:\"1\";s:17:\"single_categories\";s:1:\"1\";s:14:\"single_comment\";s:1:\"1\";s:10:\"single_tag\";s:0:\"\";s:19:\"single_social_share\";s:0:\"\";s:13:\"single_author\";s:1:\"1\";s:30:\"single_author_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:30:\"single_author_background_image\";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:19:\"single_author_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:14:\"single_related\";s:1:\"1\";s:15:\"single_post_nav\";s:0:\"\";s:14:\"share-facebook\";s:1:\"1\";s:13:\"share-twitter\";s:1:\"1\";s:16:\"share-googleplus\";s:1:\"1\";s:14:\"share-linkedin\";s:1:\"1\";s:15:\"share-pinterest\";s:0:\"\";s:12:\"share-tumblr\";s:0:\"\";s:8:\"share-vk\";s:0:\"\";s:10:\"share-xing\";s:0:\"\";s:12:\"share-reddit\";s:0:\"\";s:9:\"404_image\";a:9:{s:3:\"url\";s:55:\"http://tropofoto.com/wp-content/uploads/2018/05/404.png\";s:2:\"id\";s:3:\"196\";s:6:\"height\";s:2:\"90\";s:5:\"width\";s:2:\"90\";s:9:\"thumbnail\";s:55:\"http://tropofoto.com/wp-content/uploads/2018/05/404.png\";s:5:\"title\";s:3:\"404\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:14:\"page_404_title\";s:0:\"\";s:16:\"page_404_message\";s:0:\"\";s:12:\"error_search\";s:1:\"1\";s:15:\"page_404_button\";s:1:\"1\";s:15:\"link_404_button\";s:7:\"?home-1\";s:13:\"default_color\";s:7:\"#050508\";s:13:\"primary_color\";s:7:\"#82d10c\";s:14:\"primary_color1\";s:7:\"#4E81F3\";s:14:\"primary_color2\";s:7:\"#FF5B29\";s:12:\"second_color\";s:7:\"#4e81f3\";s:10:\"link_color\";a:2:{s:7:\"regular\";s:7:\"#0081ff\";s:5:\"hover\";s:7:\"#82d10c\";}s:20:\"button_primary_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:17:\"button_primary_bg\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:21:\"button_primary_border\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:20:\"button_default_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:17:\"button_default_bg\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:21:\"button_default_border\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:9:\"font_body\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h1\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h2\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h3\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h4\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h5\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h6\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"google-font-1\";a:11:{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:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:22:\"google-font-selector-1\";s:0:\"\";s:13:\"enable_footer\";s:1:\"1\";s:12:\"footer-style\";s:7:\"layout1\";s:20:\"enable_client_footer\";s:1:\"1\";s:32:\"opt_client_logo_background_color\";a:3:{s:5:\"color\";s:7:\"#f7f7f7\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(247,247,247,1)\";}s:23:\"opt_client_logo_padding\";a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:17:\"enable_footer_top\";s:1:\"1\";s:22:\"enable_full_footer_top\";s:0:\"\";s:17:\"footer-top-column\";s:1:\"5\";s:25:\"footer-top-column-layout2\";s:1:\"4\";s:27:\"footer_top_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:27:\"footer_top_background_image\";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:18:\"footer_top_padding\";a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:22:\"footer_top_title_color\";s:0:\"\";s:21:\"footer_top_text_color\";s:0:\"\";s:21:\"footer_top_icon_color\";s:0:\"\";s:21:\"footer_top_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:20:\"enable_footer_bottom\";s:1:\"0\";s:24:\"footer_bottom_background\";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: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:21:\"footer_bottom_padding\";a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:25:\"footer_bottom_title_color\";s:0:\"\";s:24:\"footer_bottom_text_color\";s:0:\"\";s:26:\"footer_bottom_border_color\";s:0:\"\";s:24:\"footer_bottom_link_color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:15:\"woo_loop_layout\";s:5:\"right\";s:12:\"shop_columns\";s:1:\"3\";s:17:\"shop_columns_full\";s:1:\"4\";s:13:\"shop_products\";s:2:\"12\";s:20:\"shop_loop_product_bg\";a:3:{s:5:\"color\";s:7:\"#f5f5f5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(245,245,245,1)\";}s:8:\"price_bg\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:11:\"price_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:17:\"woo_single_layout\";s:4:\"full\";s:9:\"gutenberg\";s:7:\"disable\";s:8:\"dev_mode\";i:0;}','yes'),(399,'opt_theme_options-transients','a:3:{s:14:\"changed_values\";a:27:{s:10:\"body_width\";a:2:{s:5:\"width\";s:6:\"1240px\";s:5:\"units\";s:2:\"px\";}s:11:\"menu_sticky\";b:0;s:9:\"main_logo\";a:1:{s:3:\"url\";s:68:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo.png\";}s:10:\"main_logo1\";a:1:{s:3:\"url\";s:73:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_blue.png\";}s:11:\"sticky_logo\";a:1:{s:3:\"url\";s:73:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_blue.png\";}s:16:\"transparent_logo\";a:1:{s:3:\"url\";s:74:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_white.png\";}s:10:\"main_logo2\";a:1:{s:3:\"url\";s:74:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_white.png\";}s:12:\"sticky_logo1\";a:1:{s:3:\"url\";s:74:\"http://tropofoto.com/wp-content/themes/acumec/assets/images/logo_white.png\";}s:15:\"logo_max_height\";s:2:\"50\";s:15:\"enable_download\";b:0;s:16:\"select_file_type\";i:1;s:14:\"archive_author\";b:0;s:16:\"archive_readmore\";b:0;s:21:\"single_layout_service\";s:5:\"right\";s:18:\"single_layout_team\";s:5:\"right\";s:11:\"single_date\";b:0;s:17:\"single_categories\";b:0;s:14:\"single_comment\";b:0;s:14:\"single_related\";b:0;s:15:\"link_404_button\";s:1:\"#\";s:13:\"google-font-1\";a:8:{s:5:\"color\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:6:\"google\";b:1;s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:10:\"text-align\";s:0:\"\";}s:20:\"enable_client_footer\";b:0;s:17:\"enable_footer_top\";b:0;s:17:\"footer-top-column\";i:4;s:15:\"woo_loop_layout\";s:4:\"full\";s:20:\"shop_loop_product_bg\";a:2:{s:5:\"color\";s:7:\"#f5f5f5\";s:5:\"alpha\";i:1;}s:9:\"gutenberg\";s:0:\"\";}s:9:\"last_save\";i:1602589235;s:14:\"last_save_mode\";s:6:\"normal\";}','yes'),(400,'wpb_js_composer_license_activation_notified','yes','yes'),(401,'woocommerce_meta_box_errors','a:0:{}','yes'),(402,'newsletter_page','8','no'),(405,'cptui_post_types','a:4:{s:7:\"project\";a:28:{s:4:\"name\";s:7:\"project\";s:5:\"label\";s:7:\"Project\";s:14:\"singular_label\";s:7:\"Project\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:9:\"rest_base\";s:0:\"\";s:11:\"has_archive\";s:5:\"false\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:5:\"false\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:8:\"supports\";a:4:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:9:\"thumbnail\";i:3;s:7:\"excerpt\";}s:10:\"taxonomies\";a:0:{}s:6:\"labels\";a:23:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";}s:12:\"case_studies\";a:28:{s:4:\"name\";s:12:\"case_studies\";s:5:\"label\";s:12:\"Case Studies\";s:14:\"singular_label\";s:12:\"Case Studies\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:9:\"rest_base\";s:0:\"\";s:11:\"has_archive\";s:5:\"false\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:5:\"false\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:8:\"supports\";a:5:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:9:\"thumbnail\";i:3;s:7:\"excerpt\";i:4;s:15:\"page-attributes\";}s:10:\"taxonomies\";a:0:{}s:6:\"labels\";a:23:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";}s:4:\"team\";a:28:{s:4:\"name\";s:4:\"team\";s:5:\"label\";s:4:\"Team\";s:14:\"singular_label\";s:4:\"Team\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:9:\"rest_base\";s:0:\"\";s:11:\"has_archive\";s:5:\"false\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:5:\"false\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:8:\"supports\";a:4:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:9:\"thumbnail\";i:3;s:7:\"excerpt\";}s:10:\"taxonomies\";a:0:{}s:6:\"labels\";a:23:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";}s:7:\"service\";a:28:{s:4:\"name\";s:7:\"service\";s:5:\"label\";s:7:\"Service\";s:14:\"singular_label\";s:7:\"Service\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:9:\"rest_base\";s:0:\"\";s:11:\"has_archive\";s:5:\"false\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:5:\"false\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:8:\"supports\";a:4:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:9:\"thumbnail\";i:3;s:7:\"excerpt\";}s:10:\"taxonomies\";a:0:{}s:6:\"labels\";a:23:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";}}','yes'),(408,'cptui_taxonomies','a:3:{s:21:\"case_studies_category\";a:21:{s:4:\"name\";s:21:\"case_studies_category\";s:5:\"label\";s:21:\"Case Studies Category\";s:14:\"singular_label\";s:21:\"Case Studies Category\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:12:\"hierarchical\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:12:\"show_in_menu\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:1:\"1\";s:20:\"rewrite_hierarchical\";s:1:\"0\";s:17:\"show_admin_column\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:18:\"show_in_quick_edit\";s:0:\"\";s:9:\"rest_base\";s:0:\"\";s:6:\"labels\";a:18:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:11:\"update_item\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:13:\"new_item_name\";s:0:\"\";s:11:\"parent_item\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:13:\"popular_items\";s:0:\"\";s:26:\"separate_items_with_commas\";s:0:\"\";s:19:\"add_or_remove_items\";s:0:\"\";s:21:\"choose_from_most_used\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:8:\"no_terms\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";}s:12:\"object_types\";a:1:{i:0;s:12:\"case_studies\";}}s:16:\"project_category\";a:21:{s:4:\"name\";s:16:\"project_category\";s:5:\"label\";s:16:\"Project Category\";s:14:\"singular_label\";s:16:\"Project Category\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:12:\"hierarchical\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:12:\"show_in_menu\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:1:\"1\";s:20:\"rewrite_hierarchical\";s:1:\"0\";s:17:\"show_admin_column\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:18:\"show_in_quick_edit\";s:0:\"\";s:9:\"rest_base\";s:0:\"\";s:6:\"labels\";a:18:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:11:\"update_item\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:13:\"new_item_name\";s:0:\"\";s:11:\"parent_item\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:13:\"popular_items\";s:0:\"\";s:26:\"separate_items_with_commas\";s:0:\"\";s:19:\"add_or_remove_items\";s:0:\"\";s:21:\"choose_from_most_used\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:8:\"no_terms\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";}s:12:\"object_types\";a:1:{i:0;s:7:\"project\";}}s:16:\"service_category\";a:21:{s:4:\"name\";s:16:\"service_category\";s:5:\"label\";s:16:\"Service Category\";s:14:\"singular_label\";s:16:\"Service Category\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:12:\"hierarchical\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:12:\"show_in_menu\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:1:\"1\";s:20:\"rewrite_hierarchical\";s:1:\"0\";s:17:\"show_admin_column\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:18:\"show_in_quick_edit\";s:0:\"\";s:9:\"rest_base\";s:0:\"\";s:6:\"labels\";a:18:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:11:\"update_item\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:13:\"new_item_name\";s:0:\"\";s:11:\"parent_item\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:13:\"popular_items\";s:0:\"\";s:26:\"separate_items_with_commas\";s:0:\"\";s:19:\"add_or_remove_items\";s:0:\"\";s:21:\"choose_from_most_used\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:8:\"no_terms\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";}s:12:\"object_types\";a:1:{i:0;s:7:\"service\";}}}','yes'),(411,'product_cat_children','a:2:{i:25;a:2:{i:0;i:31;i:1;i:40;}i:34;a:2:{i:0;i:39;i:1;i:44;}}','yes'),(412,'case_studies_category_children','a:0:{}','yes'),(413,'project_category_children','a:0:{}','yes'),(414,'service_category_children','a:0:{}','yes'),(418,'rs_image_meta_todo','a:12:{i:1815;s:82:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/9_a_background.jpg\";i:1816;s:82:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/9_b_background.jpg\";i:1817;s:82:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/9_c_background.jpg\";i:1818;s:77:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/70_a-back.jpg\";i:1819;s:77:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/70_b_back.jpg\";i:1820;s:77:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/70_c_back.jpg\";i:1821;s:83:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/18_a_background.jpg\";i:1822;s:80:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/18_a_letters.png\";i:1823;s:83:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/18_b_background.jpg\";i:1824;s:80:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/18_b_letters.png\";i:1825;s:83:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/18_c_background.jpg\";i:1826;s:80:\"/var/www/tropofoto.com/public_html/wp-content/uploads/revslider/18_c_letters.png\";}','yes'),(420,'ef3-current-demo-installed','demo-acumec','yes'),(429,'theme_mods_zix','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:73;}s:18:\"custom_css_post_id\";i:2140;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602591073;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:22:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";i:3;s:13:\"custom_html-1\";i:4;s:13:\"custom_html-6\";i:5;s:13:\"custom_html-7\";i:6;s:13:\"custom_html-8\";i:7;s:13:\"media_image-1\";i:8;s:13:\"media_image-2\";i:9;s:13:\"media_image-3\";i:10;s:13:\"media_image-4\";i:11;s:13:\"media_image-5\";i:12;s:13:\"media_image-6\";i:13;s:13:\"media_image-7\";i:14;s:6:\"text-1\";i:15;s:13:\"media_image-8\";i:16;s:10:\"nav_menu-2\";i:17;s:10:\"nav_menu-3\";i:18;s:10:\"nav_menu-4\";i:19;s:6:\"text-2\";i:20;s:6:\"text-3\";i:21;s:13:\"custom_html-9\";}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-1\";i:1;s:14:\"recent-posts-1\";i:2;s:11:\"tag_cloud-1\";i:3;s:12:\"categories-1\";i:4;s:15:\"media_gallery-1\";}s:14:\"footer_widgets\";a:4:{i:0;s:6:\"text-4\";i:1;s:10:\"nav_menu-5\";i:2;s:10:\"nav_menu-6\";i:3;s:6:\"text-5\";}}}s:7:\"zix_opt\";a:4:{s:9:\"main_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604389078228.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:2:\"95\";s:5:\"width\";s:3:\"400\";s:9:\"thumbnail\";s:80:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729-380x380.png\";}s:11:\"sticky_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:3:\"577\";s:5:\"width\";s:4:\"2423\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"retina_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604389078228.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:2:\"95\";s:5:\"width\";s:3:\"400\";s:9:\"thumbnail\";s:80:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729-380x380.png\";}s:18:\"retina_sticky_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:3:\"577\";s:5:\"width\";s:4:\"2423\";s:9:\"thumbnail\";s:0:\"\";}}}','yes'),(435,'elementor_version','3.6.5','yes'),(436,'elementor_install_history','a:23:{s:6:\"3.0.11\";i:1602756317;s:5:\"3.2.5\";i:1624847333;s:5:\"3.3.0\";i:1626661554;s:5:\"3.3.1\";i:1627266355;s:5:\"3.4.0\";i:1629127453;s:5:\"3.4.2\";i:1629685672;s:5:\"3.4.3\";i:1630333825;s:5:\"3.4.4\";i:1632104968;s:5:\"3.4.5\";i:1634524661;s:5:\"3.4.6\";i:1635128960;s:5:\"3.4.7\";i:1635733864;s:5:\"3.4.8\";i:1637549207;s:5:\"3.5.0\";i:1639967236;s:5:\"3.5.1\";i:1640010853;s:5:\"3.5.2\";i:1640572011;s:5:\"3.5.3\";i:1641178036;s:5:\"3.5.4\";i:1642991175;s:5:\"3.5.5\";i:1644200703;s:5:\"3.5.6\";i:1646058666;s:5:\"3.6.1\";i:1648434489;s:5:\"3.6.2\";i:1649082526;s:5:\"3.6.4\";i:1650248977;s:5:\"3.6.5\";i:1651458439;}','yes'),(437,'widget_subscribe','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(438,'widget_social_links','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:7:{s:5:\"title\";s:10:\"Follow Us!\";s:2:\"fb\";s:1:\"#\";s:7:\"twitter\";s:1:\"#\";s:11:\"google_plus\";s:0:\"\";s:5:\"vimeo\";s:0:\"\";s:7:\"youtube\";s:1:\"#\";s:9:\"pinterest\";s:1:\"#\";}}','yes'),(441,'acf_version','5.9.1','yes');
INSERT INTO `wp_options` VALUES (443,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:825:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic | Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving & Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App & SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health & Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital & Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital & Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health & Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health & Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club – NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot – NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors – NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends – NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe – Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:120;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe – Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe – Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe – Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe – Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health & Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health & Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic | Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic | Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:160;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar – Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion – Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery – Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails – Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival – Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course – Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic – Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe – Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe – About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:174;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture – Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"Medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe – Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant – About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency – Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption – Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:193;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise & Fitness Equipment – eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer – Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:197;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe – Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner – Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe – Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation – Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events – Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training – Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:211;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe – About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses – Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe – Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop – eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace – Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa & Beauty – Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:221;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening – Health & Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company – Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management – Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact – Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:230;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care – Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones – eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:235;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe – Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference – Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe – Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:239;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course – eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency – Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash – Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography – Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer – Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker – Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor – Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe – About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:272;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach – Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe – About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:279;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale – eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing & Moving Company – Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer – Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design – Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management – Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:288;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center – Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe – Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course – Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe – Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian – Health & Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe – Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef – Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course – Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe – Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant – Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project – Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer – Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop – 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog & Cat Food Delivery – Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop – Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition – Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course – Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger – Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop – Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor – Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop – Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio – Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery – Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar – Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer – Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App – Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale – eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare – Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service – Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company – About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction – Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency – About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic – Health & Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact 16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children’s Optometrist – Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon – Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant – Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon – Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon – Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon – Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency – Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page – Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page – Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product – eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym – App Service – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:414;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio – Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale – eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio – Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion – eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale – eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef – Thank You Page – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course – Thank You Page – Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:440;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate – News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant – Chef’s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant – Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant – Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant – Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop – Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course – Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home – Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design – Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:510;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography – Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography – Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography – Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:515;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography – Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:517;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography – Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:519;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography – Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography – Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography – Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography – B&W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography – Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:532;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel – Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel – Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel – FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel – Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio – Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:548;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:550;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio – Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company – Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm – Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym – Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm – Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm – Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency – Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym – Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency – Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym – Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm – Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency – Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym – Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency – Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:618;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design – Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design – News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design – Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design – Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant – 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant – Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm – Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm – Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate – 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate – Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate – Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate – single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine – Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine – Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine – Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine – Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course – End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course – Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course – Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography – Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography – Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio – Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio – Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:678;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:686;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist – single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist – single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel – Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel – Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel – Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel – Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog – Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog – Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog – Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog – Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(444,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:77:\"Introducing New Nested Elements - the Future of Design with Elementor widgets\";s:7:\"excerpt\";s:416:\"Elementor and Elementor Pro 3.10 include new design capabilities that will unlock a whole new world of creativity when it comes to designing your websites with Nested Elements, and introduces a new custom unit in sizing controls that will enable you to reach a higher level of accuracy when it comes to designing your websites. These versions also include a new container-based library, and performance improvements.\";s:7:\"created\";i:1674137711;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:137:\"https://elementor.com/blog/new-nested-elements-tabs-custom-units/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:98:\"Introducing Elementor 3.9: New Save as Default Option for Elements To Enhance Your Design Workflow\";s:7:\"excerpt\";s:253:\"Elementor 3.9 includes the new Save as a Default option, broadens the capabilities of the Loop Builder to support WooCommerce and the section-based layout, and several additional features that improve the design of your website and its user experience. \";s:7:\"created\";i:1670943042;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:141:\"https://elementor.com/blog/introducing-elementor-3-9-save-as-default/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:82:\"Introducing Loop Builder: Design Every Aspect of your Post and Product Collections\";s:7:\"excerpt\";s:306:\"Elementor 3.8 includes some highly anticipated features, including the first phase of the Loop Builder, with additional functions and capabilities added in upcoming versions. With the Loop Builder, you gain more creative freedom to design your posts and listings, so you can design it any way you’d like.\";s:7:\"created\";i:1667397460;s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:128:\"https://elementor.com/blog/introducing-the-loop-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(449,'zix_opt','a:68:{s:8:\"last_tab\";s:2:\"19\";s:9:\"main_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604389078228.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:2:\"95\";s:5:\"width\";s:3:\"400\";s:9:\"thumbnail\";s:80:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729-380x380.png\";}s:11:\"sticky_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:3:\"577\";s:5:\"width\";s:4:\"2423\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"retina_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604389078228.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:2:\"95\";s:5:\"width\";s:3:\"400\";s:9:\"thumbnail\";s:80:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729-380x380.png\";}s:18:\"retina_sticky_logo\";a:5:{s:3:\"url\";s:72:\"http://tropofoto.com/wp-content/uploads/2020/11/cover-e1604384703729.png\";s:2:\"id\";s:4:\"2144\";s:6:\"height\";s:3:\"577\";s:5:\"width\";s:4:\"2423\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"is_header_search\";s:1:\"1\";s:12:\"is_mini_cart\";s:1:\"1\";s:14:\"is_page_header\";s:1:\"1\";s:21:\"page_header_bg_select\";s:5:\"image\";s:17:\"page_header_image\";a:5:{s:3:\"url\";s:63:\"http://tropofoto.com/wp-content/uploads/2020/01/page_banner.jpg\";s:2:\"id\";s:3:\"502\";s:6:\"height\";s:3:\"450\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:71:\"http://tropofoto.com/wp-content/uploads/2020/01/page_banner-380x380.jpg\";}s:19:\"page_header_overlay\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:20:\"page_header_bg_color\";s:0:\"\";s:29:\"page_header_bg_gradient_color\";a:2:{s:4:\"from\";s:7:\"#4b0096\";s:2:\"to\";s:7:\"#8900c6\";}s:13:\"is_header_top\";s:1:\"1\";s:12:\"phone_number\";s:10:\"0123456789\";s:13:\"email_address\";s:19:\"[email protected]\";s:17:\"header_top_social\";s:1:\"1\";s:23:\"menu_typography_options\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:16:\"menu_hover_color\";s:0:\"\";s:23:\"menu_hover_border_color\";s:0:\"\";s:17:\"sticky_menu_color\";s:0:\"\";s:23:\"sticky_menu_hover_color\";s:0:\"\";s:12:\"is_dark_menu\";s:0:\"\";s:15:\"blog_banner_bg2\";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:\"blog_banner_bg_color\";s:0:\"\";s:10:\"blog_title\";s:8:\"Our Blog\";s:24:\"blog_titlebar_title_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:20:\"blog_menu_font_color\";s:0:\"\";s:19:\"is_blog_sticky_logo\";s:1:\"1\";s:17:\"blog_style_select\";s:5:\"right\";s:11:\"blog_column\";s:1:\"6\";s:17:\"post_title_length\";s:2:\"50\";s:12:\"blog_excerpt\";s:2:\"40\";s:12:\"is_post_meta\";s:1:\"1\";s:12:\"is_post_date\";s:1:\"1\";s:11:\"is_post_cat\";s:1:\"1\";s:15:\"is_social_share\";s:1:\"1\";s:11:\"is_post_tag\";s:1:\"1\";s:19:\"is_single_post_meta\";s:1:\"1\";s:14:\"is_single_cats\";s:1:\"1\";s:21:\"is_single_post_author\";s:1:\"1\";s:22:\"is_single_comment_meta\";s:1:\"1\";s:19:\"is_single_post_date\";s:1:\"1\";s:16:\"is_related_posts\";s:0:\"\";s:19:\"related_posts_title\";s:12:\"Related Post\";s:19:\"related_posts_count\";s:1:\"3\";s:22:\"portfolio_page_heading\";s:13:\"Meet Our Team\";s:20:\"service_page_heading\";s:12:\"Our Services\";s:17:\"team_page_heading\";s:13:\"Meet Our Team\";s:8:\"facebook\";s:20:\"https://facebook.com\";s:7:\"twitter\";s:19:\"https://twitter.com\";s:5:\"vimeo\";s:0:\"\";s:8:\"linkedin\";s:20:\"https://linkedin.com\";s:8:\"dribbble\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:11:\"heading_404\";s:9:\"404 Error\";s:13:\"error_heading\";s:16:\"4<span>0</span>4\";s:16:\"error_subheading\";s:54:\"<span>Oh no!</span> There\'s not Much Left Here for you\";s:17:\"error_description\";s:0:\"\";s:9:\"body_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"h1_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"h2_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"h3_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"h4_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"h5_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"h6_typo\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:16:\"footer_copyright\";s:117:\"@ Copyright 2020. Built by <a href=\"http://tropofoto.com/\" target=\"_blank\" rel=\"nofollow noopener\">TropoFoto.Com</a>\";}','yes'),(450,'zix_opt-transients','a:2:{s:14:\"changed_values\";a:3:{s:17:\"page_header_image\";a:9:{s:3:\"url\";s:63:\"http://tropofoto.com/wp-content/uploads/2020/01/page_banner.jpg\";s:2:\"id\";s:3:\"502\";s:6:\"height\";s:3:\"450\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:71:\"http://tropofoto.com/wp-content/uploads/2020/01/page_banner-380x380.jpg\";s:5:\"title\";s:11:\"page_banner\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:15:\"blog_banner_bg2\";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:\"\";}s:16:\"footer_copyright\";s:181:\"@ Copyright 2020 Zix. Built with <i class=\"fa fa-heart\"></i> by <a href=\"https://themeforest.net/user/droitthemes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">DroitThemes</a>\";}s:9:\"last_save\";i:1604486254;}','yes'),(451,'_elementor_installed_time','1602590201','yes'),(452,'elementor_active_kit','1829','yes'),(461,'elementor_disable_color_schemes','yes','yes'),(462,'elementor_disable_typography_schemes','yes','yes'),(463,'elementor_global_image_lightbox','','yes'),(484,'theme_mods_twentytwenty','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:73;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602591114;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:22:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";i:3;s:13:\"custom_html-1\";i:4;s:13:\"custom_html-6\";i:5;s:13:\"custom_html-7\";i:6;s:13:\"custom_html-8\";i:7;s:13:\"media_image-1\";i:8;s:13:\"media_image-2\";i:9;s:13:\"media_image-3\";i:10;s:13:\"media_image-4\";i:11;s:13:\"media_image-5\";i:12;s:13:\"media_image-6\";i:13;s:13:\"media_image-7\";i:14;s:6:\"text-1\";i:15;s:13:\"media_image-8\";i:16;s:10:\"nav_menu-2\";i:17;s:10:\"nav_menu-3\";i:18;s:10:\"nav_menu-4\";i:19;s:6:\"text-2\";i:20;s:6:\"text-3\";i:21;s:13:\"custom_html-9\";}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-1\";i:1;s:14:\"recent-posts-1\";i:2;s:11:\"tag_cloud-1\";i:3;s:12:\"categories-1\";i:4;s:15:\"media_gallery-1\";}s:9:\"sidebar-2\";a:4:{i:0;s:6:\"text-4\";i:1;s:10:\"nav_menu-5\";i:2;s:10:\"nav_menu-6\";i:3;s:6:\"text-5\";}}}}','yes'),(491,'wpcf7','a:2:{s:7:\"version\";s:7:\"5.5.6.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1602591164;s:7:\"version\";s:5:\"5.2.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(494,'acffa_settings','a:3:{s:19:\"acffa_major_version\";i:5;s:20:\"acffa_plugin_version\";s:5:\"4.0.3\";s:27:\"acffa_v5_compatibility_mode\";i:1;}','no'),(495,'ACFFA_current_version','5.15.4','no'),(499,'category_children','a:0:{}','yes'),(500,'elementor_library_category_children','a:0:{}','yes'),(501,'portfolio_cat_children','a:0:{}','yes'),(502,'services_cat_children','a:0:{}','yes'),(503,'team_cat_children','a:0:{}','yes'),(504,'footer_cat_children','a:0:{}','yes'),(505,'ACFFA_icon_data','a:1:{s:6:\"5.15.4\";a:2:{s:4:\"list\";a:3:{s:3:\"fab\";a:457:{s:12:\"fab fa-500px\";s:33:\"<i class=\"fab\"></i> 500px\";s:22:\"fab fa-accessible-icon\";s:43:\"<i class=\"fab\"></i> accessible-icon\";s:15:\"fab fa-accusoft\";s:36:\"<i class=\"fab\"></i> accusoft\";s:32:\"fab fa-acquisitions-incorporated\";s:53:\"<i class=\"fab\"></i> acquisitions-incorporated\";s:10:\"fab fa-adn\";s:31:\"<i class=\"fab\"></i> adn\";s:15:\"fab fa-adversal\";s:36:\"<i class=\"fab\"></i> adversal\";s:21:\"fab fa-affiliatetheme\";s:42:\"<i class=\"fab\"></i> affiliatetheme\";s:13:\"fab fa-airbnb\";s:34:\"<i class=\"fab\"></i> airbnb\";s:14:\"fab fa-algolia\";s:35:\"<i class=\"fab\"></i> algolia\";s:13:\"fab fa-alipay\";s:34:\"<i class=\"fab\"></i> alipay\";s:13:\"fab fa-amazon\";s:34:\"<i class=\"fab\"></i> amazon\";s:17:\"fab fa-amazon-pay\";s:38:\"<i class=\"fab\"></i> amazon-pay\";s:13:\"fab fa-amilia\";s:34:\"<i class=\"fab\"></i> amilia\";s:14:\"fab fa-android\";s:35:\"<i class=\"fab\"></i> android\";s:16:\"fab fa-angellist\";s:37:\"<i class=\"fab\"></i> angellist\";s:20:\"fab fa-angrycreative\";s:41:\"<i class=\"fab\"></i> angrycreative\";s:14:\"fab fa-angular\";s:35:\"<i class=\"fab\"></i> angular\";s:16:\"fab fa-app-store\";s:37:\"<i class=\"fab\"></i> app-store\";s:20:\"fab fa-app-store-ios\";s:41:\"<i class=\"fab\"></i> app-store-ios\";s:12:\"fab fa-apper\";s:33:\"<i class=\"fab\"></i> apper\";s:12:\"fab fa-apple\";s:33:\"<i class=\"fab\"></i> apple\";s:16:\"fab fa-apple-pay\";s:37:\"<i class=\"fab\"></i> apple-pay\";s:17:\"fab fa-artstation\";s:38:\"<i class=\"fab\"></i> artstation\";s:17:\"fab fa-asymmetrik\";s:38:\"<i class=\"fab\"></i> asymmetrik\";s:16:\"fab fa-atlassian\";s:37:\"<i class=\"fab\"></i> atlassian\";s:14:\"fab fa-audible\";s:35:\"<i class=\"fab\"></i> audible\";s:19:\"fab fa-autoprefixer\";s:40:\"<i class=\"fab\"></i> autoprefixer\";s:14:\"fab fa-avianex\";s:35:\"<i class=\"fab\"></i> avianex\";s:13:\"fab fa-aviato\";s:34:\"<i class=\"fab\"></i> aviato\";s:10:\"fab fa-aws\";s:31:\"<i class=\"fab\"></i> aws\";s:15:\"fab fa-bandcamp\";s:36:\"<i class=\"fab\"></i> bandcamp\";s:17:\"fab fa-battle-net\";s:38:\"<i class=\"fab\"></i> battle-net\";s:14:\"fab fa-behance\";s:35:\"<i class=\"fab\"></i> behance\";s:21:\"fab fa-behance-square\";s:42:\"<i class=\"fab\"></i> behance-square\";s:16:\"fab fa-bimobject\";s:37:\"<i class=\"fab\"></i> bimobject\";s:16:\"fab fa-bitbucket\";s:37:\"<i class=\"fab\"></i> bitbucket\";s:14:\"fab fa-bitcoin\";s:35:\"<i class=\"fab\"></i> bitcoin\";s:11:\"fab fa-bity\";s:32:\"<i class=\"fab\"></i> bity\";s:16:\"fab fa-black-tie\";s:37:\"<i class=\"fab\"></i> black-tie\";s:17:\"fab fa-blackberry\";s:38:\"<i class=\"fab\"></i> blackberry\";s:14:\"fab fa-blogger\";s:35:\"<i class=\"fab\"></i> blogger\";s:16:\"fab fa-blogger-b\";s:37:\"<i class=\"fab\"></i> blogger-b\";s:16:\"fab fa-bluetooth\";s:37:\"<i class=\"fab\"></i> bluetooth\";s:18:\"fab fa-bluetooth-b\";s:39:\"<i class=\"fab\"></i> bluetooth-b\";s:16:\"fab fa-bootstrap\";s:37:\"<i class=\"fab\"></i> bootstrap\";s:10:\"fab fa-btc\";s:31:\"<i class=\"fab\"></i> btc\";s:13:\"fab fa-buffer\";s:34:\"<i class=\"fab\"></i> buffer\";s:23:\"fab fa-buromobelexperte\";s:44:\"<i class=\"fab\"></i> buromobelexperte\";s:18:\"fab fa-buy-n-large\";s:39:\"<i class=\"fab\"></i> buy-n-large\";s:17:\"fab fa-buysellads\";s:38:\"<i class=\"fab\"></i> buysellads\";s:26:\"fab fa-canadian-maple-leaf\";s:47:\"<i class=\"fab\"></i> canadian-maple-leaf\";s:20:\"fab fa-cc-amazon-pay\";s:41:\"<i class=\"fab\"></i> cc-amazon-pay\";s:14:\"fab fa-cc-amex\";s:35:\"<i class=\"fab\"></i> cc-amex\";s:19:\"fab fa-cc-apple-pay\";s:40:\"<i class=\"fab\"></i> cc-apple-pay\";s:21:\"fab fa-cc-diners-club\";s:42:\"<i class=\"fab\"></i> cc-diners-club\";s:18:\"fab fa-cc-discover\";s:39:\"<i class=\"fab\"></i> cc-discover\";s:13:\"fab fa-cc-jcb\";s:34:\"<i class=\"fab\"></i> cc-jcb\";s:20:\"fab fa-cc-mastercard\";s:41:\"<i class=\"fab\"></i> cc-mastercard\";s:16:\"fab fa-cc-paypal\";s:37:\"<i class=\"fab\"></i> cc-paypal\";s:16:\"fab fa-cc-stripe\";s:37:\"<i class=\"fab\"></i> cc-stripe\";s:14:\"fab fa-cc-visa\";s:35:\"<i class=\"fab\"></i> cc-visa\";s:17:\"fab fa-centercode\";s:38:\"<i class=\"fab\"></i> centercode\";s:13:\"fab fa-centos\";s:34:\"<i class=\"fab\"></i> centos\";s:13:\"fab fa-chrome\";s:34:\"<i class=\"fab\"></i> chrome\";s:17:\"fab fa-chromecast\";s:38:\"<i class=\"fab\"></i> chromecast\";s:17:\"fab fa-cloudflare\";s:38:\"<i class=\"fab\"></i> cloudflare\";s:17:\"fab fa-cloudscale\";s:38:\"<i class=\"fab\"></i> cloudscale\";s:17:\"fab fa-cloudsmith\";s:38:\"<i class=\"fab\"></i> cloudsmith\";s:19:\"fab fa-cloudversify\";s:40:\"<i class=\"fab\"></i> cloudversify\";s:14:\"fab fa-codepen\";s:35:\"<i class=\"fab\"></i> codepen\";s:15:\"fab fa-codiepie\";s:36:\"<i class=\"fab\"></i> codiepie\";s:17:\"fab fa-confluence\";s:38:\"<i class=\"fab\"></i> confluence\";s:21:\"fab fa-connectdevelop\";s:42:\"<i class=\"fab\"></i> connectdevelop\";s:13:\"fab fa-contao\";s:34:\"<i class=\"fab\"></i> contao\";s:20:\"fab fa-cotton-bureau\";s:41:\"<i class=\"fab\"></i> cotton-bureau\";s:13:\"fab fa-cpanel\";s:34:\"<i class=\"fab\"></i> cpanel\";s:23:\"fab fa-creative-commons\";s:44:\"<i class=\"fab\"></i> creative-commons\";s:26:\"fab fa-creative-commons-by\";s:47:\"<i class=\"fab\"></i> creative-commons-by\";s:26:\"fab fa-creative-commons-nc\";s:47:\"<i class=\"fab\"></i> creative-commons-nc\";s:29:\"fab fa-creative-commons-nc-eu\";s:50:\"<i class=\"fab\"></i> creative-commons-nc-eu\";s:29:\"fab fa-creative-commons-nc-jp\";s:50:\"<i class=\"fab\"></i> creative-commons-nc-jp\";s:26:\"fab fa-creative-commons-nd\";s:47:\"<i class=\"fab\"></i> creative-commons-nd\";s:26:\"fab fa-creative-commons-pd\";s:47:\"<i class=\"fab\"></i> creative-commons-pd\";s:30:\"fab fa-creative-commons-pd-alt\";s:51:\"<i class=\"fab\"></i> creative-commons-pd-alt\";s:29:\"fab fa-creative-commons-remix\";s:50:\"<i class=\"fab\"></i> creative-commons-remix\";s:26:\"fab fa-creative-commons-sa\";s:47:\"<i class=\"fab\"></i> creative-commons-sa\";s:32:\"fab fa-creative-commons-sampling\";s:53:\"<i class=\"fab\"></i> creative-commons-sampling\";s:37:\"fab fa-creative-commons-sampling-plus\";s:58:\"<i class=\"fab\"></i> creative-commons-sampling-plus\";s:29:\"fab fa-creative-commons-share\";s:50:\"<i class=\"fab\"></i> creative-commons-share\";s:28:\"fab fa-creative-commons-zero\";s:49:\"<i class=\"fab\"></i> creative-commons-zero\";s:20:\"fab fa-critical-role\";s:41:\"<i class=\"fab\"></i> critical-role\";s:11:\"fab fa-css3\";s:32:\"<i class=\"fab\"></i> css3\";s:15:\"fab fa-css3-alt\";s:36:\"<i class=\"fab\"></i> css3-alt\";s:17:\"fab fa-cuttlefish\";s:38:\"<i class=\"fab\"></i> cuttlefish\";s:14:\"fab fa-d-and-d\";s:35:\"<i class=\"fab\"></i> d-and-d\";s:21:\"fab fa-d-and-d-beyond\";s:42:\"<i class=\"fab\"></i> d-and-d-beyond\";s:18:\"fab fa-dailymotion\";s:39:\"<i class=\"fab\"></i> dailymotion\";s:15:\"fab fa-dashcube\";s:36:\"<i class=\"fab\"></i> dashcube\";s:13:\"fab fa-deezer\";s:34:\"<i class=\"fab\"></i> deezer\";s:16:\"fab fa-delicious\";s:37:\"<i class=\"fab\"></i> delicious\";s:16:\"fab fa-deploydog\";s:37:\"<i class=\"fab\"></i> deploydog\";s:14:\"fab fa-deskpro\";s:35:\"<i class=\"fab\"></i> deskpro\";s:10:\"fab fa-dev\";s:31:\"<i class=\"fab\"></i> dev\";s:17:\"fab fa-deviantart\";s:38:\"<i class=\"fab\"></i> deviantart\";s:10:\"fab fa-dhl\";s:31:\"<i class=\"fab\"></i> dhl\";s:15:\"fab fa-diaspora\";s:36:\"<i class=\"fab\"></i> diaspora\";s:11:\"fab fa-digg\";s:32:\"<i class=\"fab\"></i> digg\";s:20:\"fab fa-digital-ocean\";s:41:\"<i class=\"fab\"></i> digital-ocean\";s:14:\"fab fa-discord\";s:35:\"<i class=\"fab\"></i> discord\";s:16:\"fab fa-discourse\";s:37:\"<i class=\"fab\"></i> discourse\";s:13:\"fab fa-dochub\";s:34:\"<i class=\"fab\"></i> dochub\";s:13:\"fab fa-docker\";s:34:\"<i class=\"fab\"></i> docker\";s:20:\"fab fa-draft2digital\";s:41:\"<i class=\"fab\"></i> draft2digital\";s:15:\"fab fa-dribbble\";s:36:\"<i class=\"fab\"></i> dribbble\";s:22:\"fab fa-dribbble-square\";s:43:\"<i class=\"fab\"></i> dribbble-square\";s:14:\"fab fa-dropbox\";s:35:\"<i class=\"fab\"></i> dropbox\";s:13:\"fab fa-drupal\";s:34:\"<i class=\"fab\"></i> drupal\";s:13:\"fab fa-dyalog\";s:34:\"<i class=\"fab\"></i> dyalog\";s:17:\"fab fa-earlybirds\";s:38:\"<i class=\"fab\"></i> earlybirds\";s:11:\"fab fa-ebay\";s:32:\"<i class=\"fab\"></i> ebay\";s:11:\"fab fa-edge\";s:32:\"<i class=\"fab\"></i> edge\";s:18:\"fab fa-edge-legacy\";s:39:\"<i class=\"fab\"></i> edge-legacy\";s:16:\"fab fa-elementor\";s:37:\"<i class=\"fab\"></i> elementor\";s:11:\"fab fa-ello\";s:32:\"<i class=\"fab\"></i> ello\";s:12:\"fab fa-ember\";s:33:\"<i class=\"fab\"></i> ember\";s:13:\"fab fa-empire\";s:34:\"<i class=\"fab\"></i> empire\";s:13:\"fab fa-envira\";s:34:\"<i class=\"fab\"></i> envira\";s:13:\"fab fa-erlang\";s:34:\"<i class=\"fab\"></i> erlang\";s:15:\"fab fa-ethereum\";s:36:\"<i class=\"fab\"></i> ethereum\";s:11:\"fab fa-etsy\";s:32:\"<i class=\"fab\"></i> etsy\";s:15:\"fab fa-evernote\";s:36:\"<i class=\"fab\"></i> evernote\";s:19:\"fab fa-expeditedssl\";s:40:\"<i class=\"fab\"></i> expeditedssl\";s:15:\"fab fa-facebook\";s:36:\"<i class=\"fab\"></i> facebook\";s:17:\"fab fa-facebook-f\";s:38:\"<i class=\"fab\"></i> facebook-f\";s:25:\"fab fa-facebook-messenger\";s:46:\"<i class=\"fab\"></i> facebook-messenger\";s:22:\"fab fa-facebook-square\";s:43:\"<i class=\"fab\"></i> facebook-square\";s:27:\"fab fa-fantasy-flight-games\";s:48:\"<i class=\"fab\"></i> fantasy-flight-games\";s:12:\"fab fa-fedex\";s:33:\"<i class=\"fab\"></i> fedex\";s:13:\"fab fa-fedora\";s:34:\"<i class=\"fab\"></i> fedora\";s:12:\"fab fa-figma\";s:33:\"<i class=\"fab\"></i> figma\";s:14:\"fab fa-firefox\";s:35:\"<i class=\"fab\"></i> firefox\";s:22:\"fab fa-firefox-browser\";s:43:\"<i class=\"fab\"></i> firefox-browser\";s:18:\"fab fa-first-order\";s:39:\"<i class=\"fab\"></i> first-order\";s:22:\"fab fa-first-order-alt\";s:43:\"<i class=\"fab\"></i> first-order-alt\";s:17:\"fab fa-firstdraft\";s:38:\"<i class=\"fab\"></i> firstdraft\";s:13:\"fab fa-flickr\";s:34:\"<i class=\"fab\"></i> flickr\";s:16:\"fab fa-flipboard\";s:37:\"<i class=\"fab\"></i> flipboard\";s:10:\"fab fa-fly\";s:31:\"<i class=\"fab\"></i> fly\";s:19:\"fab fa-font-awesome\";s:40:\"<i class=\"fab\"></i> font-awesome\";s:23:\"fab fa-font-awesome-alt\";s:44:\"<i class=\"fab\"></i> font-awesome-alt\";s:24:\"fab fa-font-awesome-flag\";s:45:\"<i class=\"fab\"></i> font-awesome-flag\";s:29:\"fab fa-font-awesome-logo-full\";s:50:\"<i class=\"fab\"></i> font-awesome-logo-full\";s:16:\"fab fa-fonticons\";s:37:\"<i class=\"fab\"></i> fonticons\";s:19:\"fab fa-fonticons-fi\";s:40:\"<i class=\"fab\"></i> fonticons-fi\";s:19:\"fab fa-fort-awesome\";s:40:\"<i class=\"fab\"></i> fort-awesome\";s:23:\"fab fa-fort-awesome-alt\";s:44:\"<i class=\"fab\"></i> fort-awesome-alt\";s:15:\"fab fa-forumbee\";s:36:\"<i class=\"fab\"></i> forumbee\";s:17:\"fab fa-foursquare\";s:38:\"<i class=\"fab\"></i> foursquare\";s:21:\"fab fa-free-code-camp\";s:42:\"<i class=\"fab\"></i> free-code-camp\";s:14:\"fab fa-freebsd\";s:35:\"<i class=\"fab\"></i> freebsd\";s:14:\"fab fa-fulcrum\";s:35:\"<i class=\"fab\"></i> fulcrum\";s:24:\"fab fa-galactic-republic\";s:45:\"<i class=\"fab\"></i> galactic-republic\";s:22:\"fab fa-galactic-senate\";s:43:\"<i class=\"fab\"></i> galactic-senate\";s:17:\"fab fa-get-pocket\";s:38:\"<i class=\"fab\"></i> get-pocket\";s:9:\"fab fa-gg\";s:30:\"<i class=\"fab\"></i> gg\";s:16:\"fab fa-gg-circle\";s:37:\"<i class=\"fab\"></i> gg-circle\";s:10:\"fab fa-git\";s:31:\"<i class=\"fab\"></i> git\";s:14:\"fab fa-git-alt\";s:35:\"<i class=\"fab\"></i> git-alt\";s:17:\"fab fa-git-square\";s:38:\"<i class=\"fab\"></i> git-square\";s:13:\"fab fa-github\";s:34:\"<i class=\"fab\"></i> github\";s:17:\"fab fa-github-alt\";s:38:\"<i class=\"fab\"></i> github-alt\";s:20:\"fab fa-github-square\";s:41:\"<i class=\"fab\"></i> github-square\";s:16:\"fab fa-gitkraken\";s:37:\"<i class=\"fab\"></i> gitkraken\";s:13:\"fab fa-gitlab\";s:34:\"<i class=\"fab\"></i> gitlab\";s:13:\"fab fa-gitter\";s:34:\"<i class=\"fab\"></i> gitter\";s:12:\"fab fa-glide\";s:33:\"<i class=\"fab\"></i> glide\";s:14:\"fab fa-glide-g\";s:35:\"<i class=\"fab\"></i> glide-g\";s:13:\"fab fa-gofore\";s:34:\"<i class=\"fab\"></i> gofore\";s:16:\"fab fa-goodreads\";s:37:\"<i class=\"fab\"></i> goodreads\";s:18:\"fab fa-goodreads-g\";s:39:\"<i class=\"fab\"></i> goodreads-g\";s:13:\"fab fa-google\";s:34:\"<i class=\"fab\"></i> google\";s:19:\"fab fa-google-drive\";s:40:\"<i class=\"fab\"></i> google-drive\";s:17:\"fab fa-google-pay\";s:38:\"<i class=\"fab\"></i> google-pay\";s:18:\"fab fa-google-play\";s:39:\"<i class=\"fab\"></i> google-play\";s:18:\"fab fa-google-plus\";s:39:\"<i class=\"fab\"></i> google-plus\";s:20:\"fab fa-google-plus-g\";s:41:\"<i class=\"fab\"></i> google-plus-g\";s:25:\"fab fa-google-plus-square\";s:46:\"<i class=\"fab\"></i> google-plus-square\";s:20:\"fab fa-google-wallet\";s:41:\"<i class=\"fab\"></i> google-wallet\";s:15:\"fab fa-gratipay\";s:36:\"<i class=\"fab\"></i> gratipay\";s:11:\"fab fa-grav\";s:32:\"<i class=\"fab\"></i> grav\";s:15:\"fab fa-gripfire\";s:36:\"<i class=\"fab\"></i> gripfire\";s:12:\"fab fa-grunt\";s:33:\"<i class=\"fab\"></i> grunt\";s:14:\"fab fa-guilded\";s:35:\"<i class=\"fab\"></i> guilded\";s:11:\"fab fa-gulp\";s:32:\"<i class=\"fab\"></i> gulp\";s:18:\"fab fa-hacker-news\";s:39:\"<i class=\"fab\"></i> hacker-news\";s:25:\"fab fa-hacker-news-square\";s:46:\"<i class=\"fab\"></i> hacker-news-square\";s:17:\"fab fa-hackerrank\";s:38:\"<i class=\"fab\"></i> hackerrank\";s:11:\"fab fa-hips\";s:32:\"<i class=\"fab\"></i> hips\";s:20:\"fab fa-hire-a-helper\";s:41:\"<i class=\"fab\"></i> hire-a-helper\";s:11:\"fab fa-hive\";s:32:\"<i class=\"fab\"></i> hive\";s:12:\"fab fa-hooli\";s:33:\"<i class=\"fab\"></i> hooli\";s:15:\"fab fa-hornbill\";s:36:\"<i class=\"fab\"></i> hornbill\";s:13:\"fab fa-hotjar\";s:34:\"<i class=\"fab\"></i> hotjar\";s:12:\"fab fa-houzz\";s:33:\"<i class=\"fab\"></i> houzz\";s:12:\"fab fa-html5\";s:33:\"<i class=\"fab\"></i> html5\";s:14:\"fab fa-hubspot\";s:35:\"<i class=\"fab\"></i> hubspot\";s:12:\"fab fa-ideal\";s:33:\"<i class=\"fab\"></i> ideal\";s:11:\"fab fa-imdb\";s:32:\"<i class=\"fab\"></i> imdb\";s:15:\"fab fa-innosoft\";s:36:\"<i class=\"fab\"></i> innosoft\";s:16:\"fab fa-instagram\";s:37:\"<i class=\"fab\"></i> instagram\";s:23:\"fab fa-instagram-square\";s:44:\"<i class=\"fab\"></i> instagram-square\";s:15:\"fab fa-instalod\";s:36:\"<i class=\"fab\"></i> instalod\";s:15:\"fab fa-intercom\";s:36:\"<i class=\"fab\"></i> intercom\";s:24:\"fab fa-internet-explorer\";s:45:\"<i class=\"fab\"></i> internet-explorer\";s:15:\"fab fa-invision\";s:36:\"<i class=\"fab\"></i> invision\";s:14:\"fab fa-ioxhost\";s:35:\"<i class=\"fab\"></i> ioxhost\";s:14:\"fab fa-itch-io\";s:35:\"<i class=\"fab\"></i> itch-io\";s:13:\"fab fa-itunes\";s:34:\"<i class=\"fab\"></i> itunes\";s:18:\"fab fa-itunes-note\";s:39:\"<i class=\"fab\"></i> itunes-note\";s:11:\"fab fa-java\";s:32:\"<i class=\"fab\"></i> java\";s:17:\"fab fa-jedi-order\";s:38:\"<i class=\"fab\"></i> jedi-order\";s:14:\"fab fa-jenkins\";s:35:\"<i class=\"fab\"></i> jenkins\";s:11:\"fab fa-jira\";s:32:\"<i class=\"fab\"></i> jira\";s:12:\"fab fa-joget\";s:33:\"<i class=\"fab\"></i> joget\";s:13:\"fab fa-joomla\";s:34:\"<i class=\"fab\"></i> joomla\";s:9:\"fab fa-js\";s:30:\"<i class=\"fab\"></i> js\";s:16:\"fab fa-js-square\";s:37:\"<i class=\"fab\"></i> js-square\";s:15:\"fab fa-jsfiddle\";s:36:\"<i class=\"fab\"></i> jsfiddle\";s:13:\"fab fa-kaggle\";s:34:\"<i class=\"fab\"></i> kaggle\";s:14:\"fab fa-keybase\";s:35:\"<i class=\"fab\"></i> keybase\";s:13:\"fab fa-keycdn\";s:34:\"<i class=\"fab\"></i> keycdn\";s:18:\"fab fa-kickstarter\";s:39:\"<i class=\"fab\"></i> kickstarter\";s:20:\"fab fa-kickstarter-k\";s:41:\"<i class=\"fab\"></i> kickstarter-k\";s:13:\"fab fa-korvue\";s:34:\"<i class=\"fab\"></i> korvue\";s:14:\"fab fa-laravel\";s:35:\"<i class=\"fab\"></i> laravel\";s:13:\"fab fa-lastfm\";s:34:\"<i class=\"fab\"></i> lastfm\";s:20:\"fab fa-lastfm-square\";s:41:\"<i class=\"fab\"></i> lastfm-square\";s:14:\"fab fa-leanpub\";s:35:\"<i class=\"fab\"></i> leanpub\";s:11:\"fab fa-less\";s:32:\"<i class=\"fab\"></i> less\";s:11:\"fab fa-line\";s:32:\"<i class=\"fab\"></i> line\";s:15:\"fab fa-linkedin\";s:36:\"<i class=\"fab\"></i> linkedin\";s:18:\"fab fa-linkedin-in\";s:39:\"<i class=\"fab\"></i> linkedin-in\";s:13:\"fab fa-linode\";s:34:\"<i class=\"fab\"></i> linode\";s:12:\"fab fa-linux\";s:33:\"<i class=\"fab\"></i> linux\";s:11:\"fab fa-lyft\";s:32:\"<i class=\"fab\"></i> lyft\";s:14:\"fab fa-magento\";s:35:\"<i class=\"fab\"></i> magento\";s:16:\"fab fa-mailchimp\";s:37:\"<i class=\"fab\"></i> mailchimp\";s:18:\"fab fa-mandalorian\";s:39:\"<i class=\"fab\"></i> mandalorian\";s:15:\"fab fa-markdown\";s:36:\"<i class=\"fab\"></i> markdown\";s:15:\"fab fa-mastodon\";s:36:\"<i class=\"fab\"></i> mastodon\";s:13:\"fab fa-maxcdn\";s:34:\"<i class=\"fab\"></i> maxcdn\";s:10:\"fab fa-mdb\";s:31:\"<i class=\"fab\"></i> mdb\";s:14:\"fab fa-medapps\";s:35:\"<i class=\"fab\"></i> medapps\";s:13:\"fab fa-medium\";s:34:\"<i class=\"fab\"></i> medium\";s:15:\"fab fa-medium-m\";s:36:\"<i class=\"fab\"></i> medium-m\";s:12:\"fab fa-medrt\";s:33:\"<i class=\"fab\"></i> medrt\";s:13:\"fab fa-meetup\";s:34:\"<i class=\"fab\"></i> meetup\";s:15:\"fab fa-megaport\";s:36:\"<i class=\"fab\"></i> megaport\";s:15:\"fab fa-mendeley\";s:36:\"<i class=\"fab\"></i> mendeley\";s:16:\"fab fa-microblog\";s:37:\"<i class=\"fab\"></i> microblog\";s:16:\"fab fa-microsoft\";s:37:\"<i class=\"fab\"></i> microsoft\";s:10:\"fab fa-mix\";s:31:\"<i class=\"fab\"></i> mix\";s:15:\"fab fa-mixcloud\";s:36:\"<i class=\"fab\"></i> mixcloud\";s:12:\"fab fa-mixer\";s:33:\"<i class=\"fab\"></i> mixer\";s:13:\"fab fa-mizuni\";s:34:\"<i class=\"fab\"></i> mizuni\";s:11:\"fab fa-modx\";s:32:\"<i class=\"fab\"></i> modx\";s:13:\"fab fa-monero\";s:34:\"<i class=\"fab\"></i> monero\";s:14:\"fab fa-napster\";s:35:\"<i class=\"fab\"></i> napster\";s:11:\"fab fa-neos\";s:32:\"<i class=\"fab\"></i> neos\";s:13:\"fab fa-nimblr\";s:34:\"<i class=\"fab\"></i> nimblr\";s:11:\"fab fa-node\";s:32:\"<i class=\"fab\"></i> node\";s:14:\"fab fa-node-js\";s:35:\"<i class=\"fab\"></i> node-js\";s:10:\"fab fa-npm\";s:31:\"<i class=\"fab\"></i> npm\";s:10:\"fab fa-ns8\";s:31:\"<i class=\"fab\"></i> ns8\";s:18:\"fab fa-nutritionix\";s:39:\"<i class=\"fab\"></i> nutritionix\";s:21:\"fab fa-octopus-deploy\";s:42:\"<i class=\"fab\"></i> octopus-deploy\";s:20:\"fab fa-odnoklassniki\";s:41:\"<i class=\"fab\"></i> odnoklassniki\";s:27:\"fab fa-odnoklassniki-square\";s:48:\"<i class=\"fab\"></i> odnoklassniki-square\";s:19:\"fab fa-old-republic\";s:40:\"<i class=\"fab\"></i> old-republic\";s:15:\"fab fa-opencart\";s:36:\"<i class=\"fab\"></i> opencart\";s:13:\"fab fa-openid\";s:34:\"<i class=\"fab\"></i> openid\";s:12:\"fab fa-opera\";s:33:\"<i class=\"fab\"></i> opera\";s:20:\"fab fa-optin-monster\";s:41:\"<i class=\"fab\"></i> optin-monster\";s:12:\"fab fa-orcid\";s:33:\"<i class=\"fab\"></i> orcid\";s:10:\"fab fa-osi\";s:31:\"<i class=\"fab\"></i> osi\";s:12:\"fab fa-page4\";s:33:\"<i class=\"fab\"></i> page4\";s:16:\"fab fa-pagelines\";s:37:\"<i class=\"fab\"></i> pagelines\";s:13:\"fab fa-palfed\";s:34:\"<i class=\"fab\"></i> palfed\";s:14:\"fab fa-patreon\";s:35:\"<i class=\"fab\"></i> patreon\";s:13:\"fab fa-paypal\";s:34:\"<i class=\"fab\"></i> paypal\";s:19:\"fab fa-penny-arcade\";s:40:\"<i class=\"fab\"></i> penny-arcade\";s:14:\"fab fa-perbyte\";s:35:\"<i class=\"fab\"></i> perbyte\";s:16:\"fab fa-periscope\";s:37:\"<i class=\"fab\"></i> periscope\";s:18:\"fab fa-phabricator\";s:39:\"<i class=\"fab\"></i> phabricator\";s:24:\"fab fa-phoenix-framework\";s:45:\"<i class=\"fab\"></i> phoenix-framework\";s:23:\"fab fa-phoenix-squadron\";s:44:\"<i class=\"fab\"></i> phoenix-squadron\";s:10:\"fab fa-php\";s:31:\"<i class=\"fab\"></i> php\";s:17:\"fab fa-pied-piper\";s:38:\"<i class=\"fab\"></i> pied-piper\";s:21:\"fab fa-pied-piper-alt\";s:42:\"<i class=\"fab\"></i> pied-piper-alt\";s:21:\"fab fa-pied-piper-hat\";s:42:\"<i class=\"fab\"></i> pied-piper-hat\";s:20:\"fab fa-pied-piper-pp\";s:41:\"<i class=\"fab\"></i> pied-piper-pp\";s:24:\"fab fa-pied-piper-square\";s:45:\"<i class=\"fab\"></i> pied-piper-square\";s:16:\"fab fa-pinterest\";s:37:\"<i class=\"fab\"></i> pinterest\";s:18:\"fab fa-pinterest-p\";s:39:\"<i class=\"fab\"></i> pinterest-p\";s:23:\"fab fa-pinterest-square\";s:44:\"<i class=\"fab\"></i> pinterest-square\";s:18:\"fab fa-playstation\";s:39:\"<i class=\"fab\"></i> playstation\";s:19:\"fab fa-product-hunt\";s:40:\"<i class=\"fab\"></i> product-hunt\";s:13:\"fab fa-pushed\";s:34:\"<i class=\"fab\"></i> pushed\";s:13:\"fab fa-python\";s:34:\"<i class=\"fab\"></i> python\";s:9:\"fab fa-qq\";s:30:\"<i class=\"fab\"></i> qq\";s:16:\"fab fa-quinscape\";s:37:\"<i class=\"fab\"></i> quinscape\";s:12:\"fab fa-quora\";s:33:\"<i class=\"fab\"></i> quora\";s:16:\"fab fa-r-project\";s:37:\"<i class=\"fab\"></i> r-project\";s:19:\"fab fa-raspberry-pi\";s:40:\"<i class=\"fab\"></i> raspberry-pi\";s:14:\"fab fa-ravelry\";s:35:\"<i class=\"fab\"></i> ravelry\";s:12:\"fab fa-react\";s:33:\"<i class=\"fab\"></i> react\";s:18:\"fab fa-reacteurope\";s:39:\"<i class=\"fab\"></i> reacteurope\";s:13:\"fab fa-readme\";s:34:\"<i class=\"fab\"></i> readme\";s:12:\"fab fa-rebel\";s:33:\"<i class=\"fab\"></i> rebel\";s:16:\"fab fa-red-river\";s:37:\"<i class=\"fab\"></i> red-river\";s:13:\"fab fa-reddit\";s:34:\"<i class=\"fab\"></i> reddit\";s:19:\"fab fa-reddit-alien\";s:40:\"<i class=\"fab\"></i> reddit-alien\";s:20:\"fab fa-reddit-square\";s:41:\"<i class=\"fab\"></i> reddit-square\";s:13:\"fab fa-redhat\";s:34:\"<i class=\"fab\"></i> redhat\";s:13:\"fab fa-renren\";s:34:\"<i class=\"fab\"></i> renren\";s:13:\"fab fa-replyd\";s:34:\"<i class=\"fab\"></i> replyd\";s:19:\"fab fa-researchgate\";s:40:\"<i class=\"fab\"></i> researchgate\";s:16:\"fab fa-resolving\";s:37:\"<i class=\"fab\"></i> resolving\";s:10:\"fab fa-rev\";s:31:\"<i class=\"fab\"></i> rev\";s:17:\"fab fa-rocketchat\";s:38:\"<i class=\"fab\"></i> rocketchat\";s:14:\"fab fa-rockrms\";s:35:\"<i class=\"fab\"></i> rockrms\";s:11:\"fab fa-rust\";s:32:\"<i class=\"fab\"></i> rust\";s:13:\"fab fa-safari\";s:34:\"<i class=\"fab\"></i> safari\";s:17:\"fab fa-salesforce\";s:38:\"<i class=\"fab\"></i> salesforce\";s:11:\"fab fa-sass\";s:32:\"<i class=\"fab\"></i> sass\";s:13:\"fab fa-schlix\";s:34:\"<i class=\"fab\"></i> schlix\";s:13:\"fab fa-scribd\";s:34:\"<i class=\"fab\"></i> scribd\";s:18:\"fab fa-searchengin\";s:39:\"<i class=\"fab\"></i> searchengin\";s:15:\"fab fa-sellcast\";s:36:\"<i class=\"fab\"></i> sellcast\";s:13:\"fab fa-sellsy\";s:34:\"<i class=\"fab\"></i> sellsy\";s:19:\"fab fa-servicestack\";s:40:\"<i class=\"fab\"></i> servicestack\";s:19:\"fab fa-shirtsinbulk\";s:40:\"<i class=\"fab\"></i> shirtsinbulk\";s:14:\"fab fa-shopify\";s:35:\"<i class=\"fab\"></i> shopify\";s:15:\"fab fa-shopware\";s:36:\"<i class=\"fab\"></i> shopware\";s:18:\"fab fa-simplybuilt\";s:39:\"<i class=\"fab\"></i> simplybuilt\";s:14:\"fab fa-sistrix\";s:35:\"<i class=\"fab\"></i> sistrix\";s:11:\"fab fa-sith\";s:32:\"<i class=\"fab\"></i> sith\";s:13:\"fab fa-sketch\";s:34:\"<i class=\"fab\"></i> sketch\";s:15:\"fab fa-skyatlas\";s:36:\"<i class=\"fab\"></i> skyatlas\";s:12:\"fab fa-skype\";s:33:\"<i class=\"fab\"></i> skype\";s:12:\"fab fa-slack\";s:33:\"<i class=\"fab\"></i> slack\";s:17:\"fab fa-slack-hash\";s:38:\"<i class=\"fab\"></i> slack-hash\";s:17:\"fab fa-slideshare\";s:38:\"<i class=\"fab\"></i> slideshare\";s:15:\"fab fa-snapchat\";s:36:\"<i class=\"fab\"></i> snapchat\";s:21:\"fab fa-snapchat-ghost\";s:42:\"<i class=\"fab\"></i> snapchat-ghost\";s:22:\"fab fa-snapchat-square\";s:43:\"<i class=\"fab\"></i> snapchat-square\";s:17:\"fab fa-soundcloud\";s:38:\"<i class=\"fab\"></i> soundcloud\";s:17:\"fab fa-sourcetree\";s:38:\"<i class=\"fab\"></i> sourcetree\";s:14:\"fab fa-speakap\";s:35:\"<i class=\"fab\"></i> speakap\";s:19:\"fab fa-speaker-deck\";s:40:\"<i class=\"fab\"></i> speaker-deck\";s:14:\"fab fa-spotify\";s:35:\"<i class=\"fab\"></i> spotify\";s:18:\"fab fa-squarespace\";s:39:\"<i class=\"fab\"></i> squarespace\";s:21:\"fab fa-stack-exchange\";s:42:\"<i class=\"fab\"></i> stack-exchange\";s:21:\"fab fa-stack-overflow\";s:42:\"<i class=\"fab\"></i> stack-overflow\";s:16:\"fab fa-stackpath\";s:37:\"<i class=\"fab\"></i> stackpath\";s:17:\"fab fa-staylinked\";s:38:\"<i class=\"fab\"></i> staylinked\";s:12:\"fab fa-steam\";s:33:\"<i class=\"fab\"></i> steam\";s:19:\"fab fa-steam-square\";s:40:\"<i class=\"fab\"></i> steam-square\";s:19:\"fab fa-steam-symbol\";s:40:\"<i class=\"fab\"></i> steam-symbol\";s:19:\"fab fa-sticker-mule\";s:40:\"<i class=\"fab\"></i> sticker-mule\";s:13:\"fab fa-strava\";s:34:\"<i class=\"fab\"></i> strava\";s:13:\"fab fa-stripe\";s:34:\"<i class=\"fab\"></i> stripe\";s:15:\"fab fa-stripe-s\";s:36:\"<i class=\"fab\"></i> stripe-s\";s:19:\"fab fa-studiovinari\";s:40:\"<i class=\"fab\"></i> studiovinari\";s:18:\"fab fa-stumbleupon\";s:39:\"<i class=\"fab\"></i> stumbleupon\";s:25:\"fab fa-stumbleupon-circle\";s:46:\"<i class=\"fab\"></i> stumbleupon-circle\";s:18:\"fab fa-superpowers\";s:39:\"<i class=\"fab\"></i> superpowers\";s:13:\"fab fa-supple\";s:34:\"<i class=\"fab\"></i> supple\";s:11:\"fab fa-suse\";s:32:\"<i class=\"fab\"></i> suse\";s:12:\"fab fa-swift\";s:33:\"<i class=\"fab\"></i> swift\";s:14:\"fab fa-symfony\";s:35:\"<i class=\"fab\"></i> symfony\";s:16:\"fab fa-teamspeak\";s:37:\"<i class=\"fab\"></i> teamspeak\";s:15:\"fab fa-telegram\";s:36:\"<i class=\"fab\"></i> telegram\";s:21:\"fab fa-telegram-plane\";s:42:\"<i class=\"fab\"></i> telegram-plane\";s:20:\"fab fa-tencent-weibo\";s:41:\"<i class=\"fab\"></i> tencent-weibo\";s:19:\"fab fa-the-red-yeti\";s:40:\"<i class=\"fab\"></i> the-red-yeti\";s:14:\"fab fa-themeco\";s:35:\"<i class=\"fab\"></i> themeco\";s:16:\"fab fa-themeisle\";s:37:\"<i class=\"fab\"></i> themeisle\";s:18:\"fab fa-think-peaks\";s:39:\"<i class=\"fab\"></i> think-peaks\";s:13:\"fab fa-tiktok\";s:34:\"<i class=\"fab\"></i> tiktok\";s:23:\"fab fa-trade-federation\";s:44:\"<i class=\"fab\"></i> trade-federation\";s:13:\"fab fa-trello\";s:34:\"<i class=\"fab\"></i> trello\";s:13:\"fab fa-tumblr\";s:34:\"<i class=\"fab\"></i> tumblr\";s:20:\"fab fa-tumblr-square\";s:41:\"<i class=\"fab\"></i> tumblr-square\";s:13:\"fab fa-twitch\";s:34:\"<i class=\"fab\"></i> twitch\";s:14:\"fab fa-twitter\";s:35:\"<i class=\"fab\"></i> twitter\";s:21:\"fab fa-twitter-square\";s:42:\"<i class=\"fab\"></i> twitter-square\";s:12:\"fab fa-typo3\";s:33:\"<i class=\"fab\"></i> typo3\";s:11:\"fab fa-uber\";s:32:\"<i class=\"fab\"></i> uber\";s:13:\"fab fa-ubuntu\";s:34:\"<i class=\"fab\"></i> ubuntu\";s:12:\"fab fa-uikit\";s:33:\"<i class=\"fab\"></i> uikit\";s:14:\"fab fa-umbraco\";s:35:\"<i class=\"fab\"></i> umbraco\";s:16:\"fab fa-uncharted\";s:37:\"<i class=\"fab\"></i> uncharted\";s:18:\"fab fa-uniregistry\";s:39:\"<i class=\"fab\"></i> uniregistry\";s:12:\"fab fa-unity\";s:33:\"<i class=\"fab\"></i> unity\";s:15:\"fab fa-unsplash\";s:36:\"<i class=\"fab\"></i> unsplash\";s:14:\"fab fa-untappd\";s:35:\"<i class=\"fab\"></i> untappd\";s:10:\"fab fa-ups\";s:31:\"<i class=\"fab\"></i> ups\";s:10:\"fab fa-usb\";s:31:\"<i class=\"fab\"></i> usb\";s:11:\"fab fa-usps\";s:32:\"<i class=\"fab\"></i> usps\";s:15:\"fab fa-ussunnah\";s:36:\"<i class=\"fab\"></i> ussunnah\";s:13:\"fab fa-vaadin\";s:34:\"<i class=\"fab\"></i> vaadin\";s:14:\"fab fa-viacoin\";s:35:\"<i class=\"fab\"></i> viacoin\";s:13:\"fab fa-viadeo\";s:34:\"<i class=\"fab\"></i> viadeo\";s:20:\"fab fa-viadeo-square\";s:41:\"<i class=\"fab\"></i> viadeo-square\";s:12:\"fab fa-viber\";s:33:\"<i class=\"fab\"></i> viber\";s:12:\"fab fa-vimeo\";s:33:\"<i class=\"fab\"></i> vimeo\";s:19:\"fab fa-vimeo-square\";s:40:\"<i class=\"fab\"></i> vimeo-square\";s:14:\"fab fa-vimeo-v\";s:35:\"<i class=\"fab\"></i> vimeo-v\";s:11:\"fab fa-vine\";s:32:\"<i class=\"fab\"></i> vine\";s:9:\"fab fa-vk\";s:30:\"<i class=\"fab\"></i> vk\";s:10:\"fab fa-vnv\";s:31:\"<i class=\"fab\"></i> vnv\";s:12:\"fab fa-vuejs\";s:33:\"<i class=\"fab\"></i> vuejs\";s:26:\"fab fa-watchman-monitoring\";s:47:\"<i class=\"fab\"></i> watchman-monitoring\";s:11:\"fab fa-waze\";s:32:\"<i class=\"fab\"></i> waze\";s:13:\"fab fa-weebly\";s:34:\"<i class=\"fab\"></i> weebly\";s:12:\"fab fa-weibo\";s:33:\"<i class=\"fab\"></i> weibo\";s:13:\"fab fa-weixin\";s:34:\"<i class=\"fab\"></i> weixin\";s:15:\"fab fa-whatsapp\";s:36:\"<i class=\"fab\"></i> whatsapp\";s:22:\"fab fa-whatsapp-square\";s:43:\"<i class=\"fab\"></i> whatsapp-square\";s:12:\"fab fa-whmcs\";s:33:\"<i class=\"fab\"></i> whmcs\";s:18:\"fab fa-wikipedia-w\";s:39:\"<i class=\"fab\"></i> wikipedia-w\";s:14:\"fab fa-windows\";s:35:\"<i class=\"fab\"></i> windows\";s:10:\"fab fa-wix\";s:31:\"<i class=\"fab\"></i> wix\";s:27:\"fab fa-wizards-of-the-coast\";s:48:\"<i class=\"fab\"></i> wizards-of-the-coast\";s:11:\"fab fa-wodu\";s:32:\"<i class=\"fab\"></i> wodu\";s:26:\"fab fa-wolf-pack-battalion\";s:47:\"<i class=\"fab\"></i> wolf-pack-battalion\";s:16:\"fab fa-wordpress\";s:37:\"<i class=\"fab\"></i> wordpress\";s:23:\"fab fa-wordpress-simple\";s:44:\"<i class=\"fab\"></i> wordpress-simple\";s:17:\"fab fa-wpbeginner\";s:38:\"<i class=\"fab\"></i> wpbeginner\";s:17:\"fab fa-wpexplorer\";s:38:\"<i class=\"fab\"></i> wpexplorer\";s:14:\"fab fa-wpforms\";s:35:\"<i class=\"fab\"></i> wpforms\";s:14:\"fab fa-wpressr\";s:35:\"<i class=\"fab\"></i> wpressr\";s:11:\"fab fa-xbox\";s:32:\"<i class=\"fab\"></i> xbox\";s:11:\"fab fa-xing\";s:32:\"<i class=\"fab\"></i> xing\";s:18:\"fab fa-xing-square\";s:39:\"<i class=\"fab\"></i> xing-square\";s:19:\"fab fa-y-combinator\";s:40:\"<i class=\"fab\"></i> y-combinator\";s:12:\"fab fa-yahoo\";s:33:\"<i class=\"fab\"></i> yahoo\";s:13:\"fab fa-yammer\";s:34:\"<i class=\"fab\"></i> yammer\";s:13:\"fab fa-yandex\";s:34:\"<i class=\"fab\"></i> yandex\";s:27:\"fab fa-yandex-international\";s:48:\"<i class=\"fab\"></i> yandex-international\";s:11:\"fab fa-yarn\";s:32:\"<i class=\"fab\"></i> yarn\";s:11:\"fab fa-yelp\";s:32:\"<i class=\"fab\"></i> yelp\";s:12:\"fab fa-yoast\";s:33:\"<i class=\"fab\"></i> yoast\";s:14:\"fab fa-youtube\";s:35:\"<i class=\"fab\"></i> youtube\";s:21:\"fab fa-youtube-square\";s:42:\"<i class=\"fab\"></i> youtube-square\";s:12:\"fab fa-zhihu\";s:33:\"<i class=\"fab\"></i> zhihu\";}s:3:\"fas\";a:1002:{s:9:\"fas fa-ad\";s:30:\"<i class=\"fas\"></i> ad\";s:19:\"fas fa-address-book\";s:40:\"<i class=\"fas\"></i> address-book\";s:19:\"fas fa-address-card\";s:40:\"<i class=\"fas\"></i> address-card\";s:13:\"fas fa-adjust\";s:34:\"<i class=\"fas\"></i> adjust\";s:20:\"fas fa-air-freshener\";s:41:\"<i class=\"fas\"></i> air-freshener\";s:19:\"fas fa-align-center\";s:40:\"<i class=\"fas\"></i> align-center\";s:20:\"fas fa-align-justify\";s:41:\"<i class=\"fas\"></i> align-justify\";s:17:\"fas fa-align-left\";s:38:\"<i class=\"fas\"></i> align-left\";s:18:\"fas fa-align-right\";s:39:\"<i class=\"fas\"></i> align-right\";s:16:\"fas fa-allergies\";s:37:\"<i class=\"fas\"></i> allergies\";s:16:\"fas fa-ambulance\";s:37:\"<i class=\"fas\"></i> ambulance\";s:42:\"fas fa-american-sign-language-interpreting\";s:63:\"<i class=\"fas\"></i> american-sign-language-interpreting\";s:13:\"fas fa-anchor\";s:34:\"<i class=\"fas\"></i> anchor\";s:24:\"fas fa-angle-double-down\";s:45:\"<i class=\"fas\"></i> angle-double-down\";s:24:\"fas fa-angle-double-left\";s:45:\"<i class=\"fas\"></i> angle-double-left\";s:25:\"fas fa-angle-double-right\";s:46:\"<i class=\"fas\"></i> angle-double-right\";s:22:\"fas fa-angle-double-up\";s:43:\"<i class=\"fas\"></i> angle-double-up\";s:17:\"fas fa-angle-down\";s:38:\"<i class=\"fas\"></i> angle-down\";s:17:\"fas fa-angle-left\";s:38:\"<i class=\"fas\"></i> angle-left\";s:18:\"fas fa-angle-right\";s:39:\"<i class=\"fas\"></i> angle-right\";s:15:\"fas fa-angle-up\";s:36:\"<i class=\"fas\"></i> angle-up\";s:12:\"fas fa-angry\";s:33:\"<i class=\"fas\"></i> angry\";s:11:\"fas fa-ankh\";s:32:\"<i class=\"fas\"></i> ankh\";s:16:\"fas fa-apple-alt\";s:37:\"<i class=\"fas\"></i> apple-alt\";s:14:\"fas fa-archive\";s:35:\"<i class=\"fas\"></i> archive\";s:14:\"fas fa-archway\";s:35:\"<i class=\"fas\"></i> archway\";s:28:\"fas fa-arrow-alt-circle-down\";s:49:\"<i class=\"fas\"></i> arrow-alt-circle-down\";s:28:\"fas fa-arrow-alt-circle-left\";s:49:\"<i class=\"fas\"></i> arrow-alt-circle-left\";s:29:\"fas fa-arrow-alt-circle-right\";s:50:\"<i class=\"fas\"></i> arrow-alt-circle-right\";s:26:\"fas fa-arrow-alt-circle-up\";s:47:\"<i class=\"fas\"></i> arrow-alt-circle-up\";s:24:\"fas fa-arrow-circle-down\";s:45:\"<i class=\"fas\"></i> arrow-circle-down\";s:24:\"fas fa-arrow-circle-left\";s:45:\"<i class=\"fas\"></i> arrow-circle-left\";s:25:\"fas fa-arrow-circle-right\";s:46:\"<i class=\"fas\"></i> arrow-circle-right\";s:22:\"fas fa-arrow-circle-up\";s:43:\"<i class=\"fas\"></i> arrow-circle-up\";s:17:\"fas fa-arrow-down\";s:38:\"<i class=\"fas\"></i> arrow-down\";s:17:\"fas fa-arrow-left\";s:38:\"<i class=\"fas\"></i> arrow-left\";s:18:\"fas fa-arrow-right\";s:39:\"<i class=\"fas\"></i> arrow-right\";s:15:\"fas fa-arrow-up\";s:36:\"<i class=\"fas\"></i> arrow-up\";s:17:\"fas fa-arrows-alt\";s:38:\"<i class=\"fas\"></i> arrows-alt\";s:19:\"fas fa-arrows-alt-h\";s:40:\"<i class=\"fas\"></i> arrows-alt-h\";s:19:\"fas fa-arrows-alt-v\";s:40:\"<i class=\"fas\"></i> arrows-alt-v\";s:34:\"fas fa-assistive-listening-systems\";s:55:\"<i class=\"fas\"></i> assistive-listening-systems\";s:15:\"fas fa-asterisk\";s:36:\"<i class=\"fas\"></i> asterisk\";s:9:\"fas fa-at\";s:30:\"<i class=\"fas\"></i> at\";s:12:\"fas fa-atlas\";s:33:\"<i class=\"fas\"></i> atlas\";s:11:\"fas fa-atom\";s:32:\"<i class=\"fas\"></i> atom\";s:24:\"fas fa-audio-description\";s:45:\"<i class=\"fas\"></i> audio-description\";s:12:\"fas fa-award\";s:33:\"<i class=\"fas\"></i> award\";s:11:\"fas fa-baby\";s:32:\"<i class=\"fas\"></i> baby\";s:20:\"fas fa-baby-carriage\";s:41:\"<i class=\"fas\"></i> baby-carriage\";s:16:\"fas fa-backspace\";s:37:\"<i class=\"fas\"></i> backspace\";s:15:\"fas fa-backward\";s:36:\"<i class=\"fas\"></i> backward\";s:12:\"fas fa-bacon\";s:33:\"<i class=\"fas\"></i> bacon\";s:15:\"fas fa-bacteria\";s:36:\"<i class=\"fas\"></i> bacteria\";s:16:\"fas fa-bacterium\";s:37:\"<i class=\"fas\"></i> bacterium\";s:12:\"fas fa-bahai\";s:33:\"<i class=\"fas\"></i> bahai\";s:20:\"fas fa-balance-scale\";s:41:\"<i class=\"fas\"></i> balance-scale\";s:25:\"fas fa-balance-scale-left\";s:46:\"<i class=\"fas\"></i> balance-scale-left\";s:26:\"fas fa-balance-scale-right\";s:47:\"<i class=\"fas\"></i> balance-scale-right\";s:10:\"fas fa-ban\";s:31:\"<i class=\"fas\"></i> ban\";s:15:\"fas fa-band-aid\";s:36:\"<i class=\"fas\"></i> band-aid\";s:14:\"fas fa-barcode\";s:35:\"<i class=\"fas\"></i> barcode\";s:11:\"fas fa-bars\";s:32:\"<i class=\"fas\"></i> bars\";s:20:\"fas fa-baseball-ball\";s:41:\"<i class=\"fas\"></i> baseball-ball\";s:22:\"fas fa-basketball-ball\";s:43:\"<i class=\"fas\"></i> basketball-ball\";s:11:\"fas fa-bath\";s:32:\"<i class=\"fas\"></i> bath\";s:20:\"fas fa-battery-empty\";s:41:\"<i class=\"fas\"></i> battery-empty\";s:19:\"fas fa-battery-full\";s:40:\"<i class=\"fas\"></i> battery-full\";s:19:\"fas fa-battery-half\";s:40:\"<i class=\"fas\"></i> battery-half\";s:22:\"fas fa-battery-quarter\";s:43:\"<i class=\"fas\"></i> battery-quarter\";s:29:\"fas fa-battery-three-quarters\";s:50:\"<i class=\"fas\"></i> battery-three-quarters\";s:10:\"fas fa-bed\";s:31:\"<i class=\"fas\"></i> bed\";s:11:\"fas fa-beer\";s:32:\"<i class=\"fas\"></i> beer\";s:11:\"fas fa-bell\";s:32:\"<i class=\"fas\"></i> bell\";s:17:\"fas fa-bell-slash\";s:38:\"<i class=\"fas\"></i> bell-slash\";s:19:\"fas fa-bezier-curve\";s:40:\"<i class=\"fas\"></i> bezier-curve\";s:12:\"fas fa-bible\";s:33:\"<i class=\"fas\"></i> bible\";s:14:\"fas fa-bicycle\";s:35:\"<i class=\"fas\"></i> bicycle\";s:13:\"fas fa-biking\";s:34:\"<i class=\"fas\"></i> biking\";s:17:\"fas fa-binoculars\";s:38:\"<i class=\"fas\"></i> binoculars\";s:16:\"fas fa-biohazard\";s:37:\"<i class=\"fas\"></i> biohazard\";s:20:\"fas fa-birthday-cake\";s:41:\"<i class=\"fas\"></i> birthday-cake\";s:14:\"fas fa-blender\";s:35:\"<i class=\"fas\"></i> blender\";s:20:\"fas fa-blender-phone\";s:41:\"<i class=\"fas\"></i> blender-phone\";s:12:\"fas fa-blind\";s:33:\"<i class=\"fas\"></i> blind\";s:11:\"fas fa-blog\";s:32:\"<i class=\"fas\"></i> blog\";s:11:\"fas fa-bold\";s:32:\"<i class=\"fas\"></i> bold\";s:11:\"fas fa-bolt\";s:32:\"<i class=\"fas\"></i> bolt\";s:11:\"fas fa-bomb\";s:32:\"<i class=\"fas\"></i> bomb\";s:11:\"fas fa-bone\";s:32:\"<i class=\"fas\"></i> bone\";s:11:\"fas fa-bong\";s:32:\"<i class=\"fas\"></i> bong\";s:11:\"fas fa-book\";s:32:\"<i class=\"fas\"></i> book\";s:16:\"fas fa-book-dead\";s:37:\"<i class=\"fas\"></i> book-dead\";s:19:\"fas fa-book-medical\";s:40:\"<i class=\"fas\"></i> book-medical\";s:16:\"fas fa-book-open\";s:37:\"<i class=\"fas\"></i> book-open\";s:18:\"fas fa-book-reader\";s:39:\"<i class=\"fas\"></i> book-reader\";s:15:\"fas fa-bookmark\";s:36:\"<i class=\"fas\"></i> bookmark\";s:17:\"fas fa-border-all\";s:38:\"<i class=\"fas\"></i> border-all\";s:18:\"fas fa-border-none\";s:39:\"<i class=\"fas\"></i> border-none\";s:19:\"fas fa-border-style\";s:40:\"<i class=\"fas\"></i> border-style\";s:19:\"fas fa-bowling-ball\";s:40:\"<i class=\"fas\"></i> bowling-ball\";s:10:\"fas fa-box\";s:31:\"<i class=\"fas\"></i> box\";s:15:\"fas fa-box-open\";s:36:\"<i class=\"fas\"></i> box-open\";s:17:\"fas fa-box-tissue\";s:38:\"<i class=\"fas\"></i> box-tissue\";s:12:\"fas fa-boxes\";s:33:\"<i class=\"fas\"></i> boxes\";s:14:\"fas fa-braille\";s:35:\"<i class=\"fas\"></i> braille\";s:12:\"fas fa-brain\";s:33:\"<i class=\"fas\"></i> brain\";s:18:\"fas fa-bread-slice\";s:39:\"<i class=\"fas\"></i> bread-slice\";s:16:\"fas fa-briefcase\";s:37:\"<i class=\"fas\"></i> briefcase\";s:24:\"fas fa-briefcase-medical\";s:45:\"<i class=\"fas\"></i> briefcase-medical\";s:22:\"fas fa-broadcast-tower\";s:43:\"<i class=\"fas\"></i> broadcast-tower\";s:12:\"fas fa-broom\";s:33:\"<i class=\"fas\"></i> broom\";s:12:\"fas fa-brush\";s:33:\"<i class=\"fas\"></i> brush\";s:10:\"fas fa-bug\";s:31:\"<i class=\"fas\"></i> bug\";s:15:\"fas fa-building\";s:36:\"<i class=\"fas\"></i> building\";s:15:\"fas fa-bullhorn\";s:36:\"<i class=\"fas\"></i> bullhorn\";s:15:\"fas fa-bullseye\";s:36:\"<i class=\"fas\"></i> bullseye\";s:11:\"fas fa-burn\";s:32:\"<i class=\"fas\"></i> burn\";s:10:\"fas fa-bus\";s:31:\"<i class=\"fas\"></i> bus\";s:14:\"fas fa-bus-alt\";s:35:\"<i class=\"fas\"></i> bus-alt\";s:20:\"fas fa-business-time\";s:41:\"<i class=\"fas\"></i> business-time\";s:17:\"fas fa-calculator\";s:38:\"<i class=\"fas\"></i> calculator\";s:15:\"fas fa-calendar\";s:36:\"<i class=\"fas\"></i> calendar\";s:19:\"fas fa-calendar-alt\";s:40:\"<i class=\"fas\"></i> calendar-alt\";s:21:\"fas fa-calendar-check\";s:42:\"<i class=\"fas\"></i> calendar-check\";s:19:\"fas fa-calendar-day\";s:40:\"<i class=\"fas\"></i> calendar-day\";s:21:\"fas fa-calendar-minus\";s:42:\"<i class=\"fas\"></i> calendar-minus\";s:20:\"fas fa-calendar-plus\";s:41:\"<i class=\"fas\"></i> calendar-plus\";s:21:\"fas fa-calendar-times\";s:42:\"<i class=\"fas\"></i> calendar-times\";s:20:\"fas fa-calendar-week\";s:41:\"<i class=\"fas\"></i> calendar-week\";s:13:\"fas fa-camera\";s:34:\"<i class=\"fas\"></i> camera\";s:19:\"fas fa-camera-retro\";s:40:\"<i class=\"fas\"></i> camera-retro\";s:17:\"fas fa-campground\";s:38:\"<i class=\"fas\"></i> campground\";s:17:\"fas fa-candy-cane\";s:38:\"<i class=\"fas\"></i> candy-cane\";s:15:\"fas fa-cannabis\";s:36:\"<i class=\"fas\"></i> cannabis\";s:15:\"fas fa-capsules\";s:36:\"<i class=\"fas\"></i> capsules\";s:10:\"fas fa-car\";s:31:\"<i class=\"fas\"></i> car\";s:14:\"fas fa-car-alt\";s:35:\"<i class=\"fas\"></i> car-alt\";s:18:\"fas fa-car-battery\";s:39:\"<i class=\"fas\"></i> car-battery\";s:16:\"fas fa-car-crash\";s:37:\"<i class=\"fas\"></i> car-crash\";s:15:\"fas fa-car-side\";s:36:\"<i class=\"fas\"></i> car-side\";s:14:\"fas fa-caravan\";s:35:\"<i class=\"fas\"></i> caravan\";s:17:\"fas fa-caret-down\";s:38:\"<i class=\"fas\"></i> caret-down\";s:17:\"fas fa-caret-left\";s:38:\"<i class=\"fas\"></i> caret-left\";s:18:\"fas fa-caret-right\";s:39:\"<i class=\"fas\"></i> caret-right\";s:24:\"fas fa-caret-square-down\";s:45:\"<i class=\"fas\"></i> caret-square-down\";s:24:\"fas fa-caret-square-left\";s:45:\"<i class=\"fas\"></i> caret-square-left\";s:25:\"fas fa-caret-square-right\";s:46:\"<i class=\"fas\"></i> caret-square-right\";s:22:\"fas fa-caret-square-up\";s:43:\"<i class=\"fas\"></i> caret-square-up\";s:15:\"fas fa-caret-up\";s:36:\"<i class=\"fas\"></i> caret-up\";s:13:\"fas fa-carrot\";s:34:\"<i class=\"fas\"></i> carrot\";s:22:\"fas fa-cart-arrow-down\";s:43:\"<i class=\"fas\"></i> cart-arrow-down\";s:16:\"fas fa-cart-plus\";s:37:\"<i class=\"fas\"></i> cart-plus\";s:20:\"fas fa-cash-register\";s:41:\"<i class=\"fas\"></i> cash-register\";s:10:\"fas fa-cat\";s:31:\"<i class=\"fas\"></i> cat\";s:18:\"fas fa-certificate\";s:39:\"<i class=\"fas\"></i> certificate\";s:12:\"fas fa-chair\";s:33:\"<i class=\"fas\"></i> chair\";s:17:\"fas fa-chalkboard\";s:38:\"<i class=\"fas\"></i> chalkboard\";s:25:\"fas fa-chalkboard-teacher\";s:46:\"<i class=\"fas\"></i> chalkboard-teacher\";s:23:\"fas fa-charging-station\";s:44:\"<i class=\"fas\"></i> charging-station\";s:17:\"fas fa-chart-area\";s:38:\"<i class=\"fas\"></i> chart-area\";s:16:\"fas fa-chart-bar\";s:37:\"<i class=\"fas\"></i> chart-bar\";s:17:\"fas fa-chart-line\";s:38:\"<i class=\"fas\"></i> chart-line\";s:16:\"fas fa-chart-pie\";s:37:\"<i class=\"fas\"></i> chart-pie\";s:12:\"fas fa-check\";s:33:\"<i class=\"fas\"></i> check\";s:19:\"fas fa-check-circle\";s:40:\"<i class=\"fas\"></i> check-circle\";s:19:\"fas fa-check-double\";s:40:\"<i class=\"fas\"></i> check-double\";s:19:\"fas fa-check-square\";s:40:\"<i class=\"fas\"></i> check-square\";s:13:\"fas fa-cheese\";s:34:\"<i class=\"fas\"></i> cheese\";s:12:\"fas fa-chess\";s:33:\"<i class=\"fas\"></i> chess\";s:19:\"fas fa-chess-bishop\";s:40:\"<i class=\"fas\"></i> chess-bishop\";s:18:\"fas fa-chess-board\";s:39:\"<i class=\"fas\"></i> chess-board\";s:17:\"fas fa-chess-king\";s:38:\"<i class=\"fas\"></i> chess-king\";s:19:\"fas fa-chess-knight\";s:40:\"<i class=\"fas\"></i> chess-knight\";s:17:\"fas fa-chess-pawn\";s:38:\"<i class=\"fas\"></i> chess-pawn\";s:18:\"fas fa-chess-queen\";s:39:\"<i class=\"fas\"></i> chess-queen\";s:17:\"fas fa-chess-rook\";s:38:\"<i class=\"fas\"></i> chess-rook\";s:26:\"fas fa-chevron-circle-down\";s:47:\"<i class=\"fas\"></i> chevron-circle-down\";s:26:\"fas fa-chevron-circle-left\";s:47:\"<i class=\"fas\"></i> chevron-circle-left\";s:27:\"fas fa-chevron-circle-right\";s:48:\"<i class=\"fas\"></i> chevron-circle-right\";s:24:\"fas fa-chevron-circle-up\";s:45:\"<i class=\"fas\"></i> chevron-circle-up\";s:19:\"fas fa-chevron-down\";s:40:\"<i class=\"fas\"></i> chevron-down\";s:19:\"fas fa-chevron-left\";s:40:\"<i class=\"fas\"></i> chevron-left\";s:20:\"fas fa-chevron-right\";s:41:\"<i class=\"fas\"></i> chevron-right\";s:17:\"fas fa-chevron-up\";s:38:\"<i class=\"fas\"></i> chevron-up\";s:12:\"fas fa-child\";s:33:\"<i class=\"fas\"></i> child\";s:13:\"fas fa-church\";s:34:\"<i class=\"fas\"></i> church\";s:13:\"fas fa-circle\";s:34:\"<i class=\"fas\"></i> circle\";s:19:\"fas fa-circle-notch\";s:40:\"<i class=\"fas\"></i> circle-notch\";s:11:\"fas fa-city\";s:32:\"<i class=\"fas\"></i> city\";s:21:\"fas fa-clinic-medical\";s:42:\"<i class=\"fas\"></i> clinic-medical\";s:16:\"fas fa-clipboard\";s:37:\"<i class=\"fas\"></i> clipboard\";s:22:\"fas fa-clipboard-check\";s:43:\"<i class=\"fas\"></i> clipboard-check\";s:21:\"fas fa-clipboard-list\";s:42:\"<i class=\"fas\"></i> clipboard-list\";s:12:\"fas fa-clock\";s:33:\"<i class=\"fas\"></i> clock\";s:12:\"fas fa-clone\";s:33:\"<i class=\"fas\"></i> clone\";s:24:\"fas fa-closed-captioning\";s:45:\"<i class=\"fas\"></i> closed-captioning\";s:12:\"fas fa-cloud\";s:33:\"<i class=\"fas\"></i> cloud\";s:25:\"fas fa-cloud-download-alt\";s:46:\"<i class=\"fas\"></i> cloud-download-alt\";s:21:\"fas fa-cloud-meatball\";s:42:\"<i class=\"fas\"></i> cloud-meatball\";s:17:\"fas fa-cloud-moon\";s:38:\"<i class=\"fas\"></i> cloud-moon\";s:22:\"fas fa-cloud-moon-rain\";s:43:\"<i class=\"fas\"></i> cloud-moon-rain\";s:17:\"fas fa-cloud-rain\";s:38:\"<i class=\"fas\"></i> cloud-rain\";s:26:\"fas fa-cloud-showers-heavy\";s:47:\"<i class=\"fas\"></i> cloud-showers-heavy\";s:16:\"fas fa-cloud-sun\";s:37:\"<i class=\"fas\"></i> cloud-sun\";s:21:\"fas fa-cloud-sun-rain\";s:42:\"<i class=\"fas\"></i> cloud-sun-rain\";s:23:\"fas fa-cloud-upload-alt\";s:44:\"<i class=\"fas\"></i> cloud-upload-alt\";s:15:\"fas fa-cocktail\";s:36:\"<i class=\"fas\"></i> cocktail\";s:11:\"fas fa-code\";s:32:\"<i class=\"fas\"></i> code\";s:18:\"fas fa-code-branch\";s:39:\"<i class=\"fas\"></i> code-branch\";s:13:\"fas fa-coffee\";s:34:\"<i class=\"fas\"></i> coffee\";s:10:\"fas fa-cog\";s:31:\"<i class=\"fas\"></i> cog\";s:11:\"fas fa-cogs\";s:32:\"<i class=\"fas\"></i> cogs\";s:12:\"fas fa-coins\";s:33:\"<i class=\"fas\"></i> coins\";s:14:\"fas fa-columns\";s:35:\"<i class=\"fas\"></i> columns\";s:14:\"fas fa-comment\";s:35:\"<i class=\"fas\"></i> comment\";s:18:\"fas fa-comment-alt\";s:39:\"<i class=\"fas\"></i> comment-alt\";s:21:\"fas fa-comment-dollar\";s:42:\"<i class=\"fas\"></i> comment-dollar\";s:19:\"fas fa-comment-dots\";s:40:\"<i class=\"fas\"></i> comment-dots\";s:22:\"fas fa-comment-medical\";s:43:\"<i class=\"fas\"></i> comment-medical\";s:20:\"fas fa-comment-slash\";s:41:\"<i class=\"fas\"></i> comment-slash\";s:15:\"fas fa-comments\";s:36:\"<i class=\"fas\"></i> comments\";s:22:\"fas fa-comments-dollar\";s:43:\"<i class=\"fas\"></i> comments-dollar\";s:19:\"fas fa-compact-disc\";s:40:\"<i class=\"fas\"></i> compact-disc\";s:14:\"fas fa-compass\";s:35:\"<i class=\"fas\"></i> compass\";s:15:\"fas fa-compress\";s:36:\"<i class=\"fas\"></i> compress\";s:19:\"fas fa-compress-alt\";s:40:\"<i class=\"fas\"></i> compress-alt\";s:26:\"fas fa-compress-arrows-alt\";s:47:\"<i class=\"fas\"></i> compress-arrows-alt\";s:21:\"fas fa-concierge-bell\";s:42:\"<i class=\"fas\"></i> concierge-bell\";s:13:\"fas fa-cookie\";s:34:\"<i class=\"fas\"></i> cookie\";s:18:\"fas fa-cookie-bite\";s:39:\"<i class=\"fas\"></i> cookie-bite\";s:11:\"fas fa-copy\";s:32:\"<i class=\"fas\"></i> copy\";s:16:\"fas fa-copyright\";s:37:\"<i class=\"fas\"></i> copyright\";s:12:\"fas fa-couch\";s:33:\"<i class=\"fas\"></i> couch\";s:18:\"fas fa-credit-card\";s:39:\"<i class=\"fas\"></i> credit-card\";s:11:\"fas fa-crop\";s:32:\"<i class=\"fas\"></i> crop\";s:15:\"fas fa-crop-alt\";s:36:\"<i class=\"fas\"></i> crop-alt\";s:12:\"fas fa-cross\";s:33:\"<i class=\"fas\"></i> cross\";s:17:\"fas fa-crosshairs\";s:38:\"<i class=\"fas\"></i> crosshairs\";s:11:\"fas fa-crow\";s:32:\"<i class=\"fas\"></i> crow\";s:12:\"fas fa-crown\";s:33:\"<i class=\"fas\"></i> crown\";s:13:\"fas fa-crutch\";s:34:\"<i class=\"fas\"></i> crutch\";s:11:\"fas fa-cube\";s:32:\"<i class=\"fas\"></i> cube\";s:12:\"fas fa-cubes\";s:33:\"<i class=\"fas\"></i> cubes\";s:10:\"fas fa-cut\";s:31:\"<i class=\"fas\"></i> cut\";s:15:\"fas fa-database\";s:36:\"<i class=\"fas\"></i> database\";s:11:\"fas fa-deaf\";s:32:\"<i class=\"fas\"></i> deaf\";s:15:\"fas fa-democrat\";s:36:\"<i class=\"fas\"></i> democrat\";s:14:\"fas fa-desktop\";s:35:\"<i class=\"fas\"></i> desktop\";s:19:\"fas fa-dharmachakra\";s:40:\"<i class=\"fas\"></i> dharmachakra\";s:16:\"fas fa-diagnoses\";s:37:\"<i class=\"fas\"></i> diagnoses\";s:11:\"fas fa-dice\";s:32:\"<i class=\"fas\"></i> dice\";s:15:\"fas fa-dice-d20\";s:36:\"<i class=\"fas\"></i> dice-d20\";s:14:\"fas fa-dice-d6\";s:35:\"<i class=\"fas\"></i> dice-d6\";s:16:\"fas fa-dice-five\";s:37:\"<i class=\"fas\"></i> dice-five\";s:16:\"fas fa-dice-four\";s:37:\"<i class=\"fas\"></i> dice-four\";s:15:\"fas fa-dice-one\";s:36:\"<i class=\"fas\"></i> dice-one\";s:15:\"fas fa-dice-six\";s:36:\"<i class=\"fas\"></i> dice-six\";s:17:\"fas fa-dice-three\";s:38:\"<i class=\"fas\"></i> dice-three\";s:15:\"fas fa-dice-two\";s:36:\"<i class=\"fas\"></i> dice-two\";s:25:\"fas fa-digital-tachograph\";s:46:\"<i class=\"fas\"></i> digital-tachograph\";s:17:\"fas fa-directions\";s:38:\"<i class=\"fas\"></i> directions\";s:14:\"fas fa-disease\";s:35:\"<i class=\"fas\"></i> disease\";s:13:\"fas fa-divide\";s:34:\"<i class=\"fas\"></i> divide\";s:12:\"fas fa-dizzy\";s:33:\"<i class=\"fas\"></i> dizzy\";s:10:\"fas fa-dna\";s:31:\"<i class=\"fas\"></i> dna\";s:10:\"fas fa-dog\";s:31:\"<i class=\"fas\"></i> dog\";s:18:\"fas fa-dollar-sign\";s:39:\"<i class=\"fas\"></i> dollar-sign\";s:12:\"fas fa-dolly\";s:33:\"<i class=\"fas\"></i> dolly\";s:20:\"fas fa-dolly-flatbed\";s:41:\"<i class=\"fas\"></i> dolly-flatbed\";s:13:\"fas fa-donate\";s:34:\"<i class=\"fas\"></i> donate\";s:18:\"fas fa-door-closed\";s:39:\"<i class=\"fas\"></i> door-closed\";s:16:\"fas fa-door-open\";s:37:\"<i class=\"fas\"></i> door-open\";s:17:\"fas fa-dot-circle\";s:38:\"<i class=\"fas\"></i> dot-circle\";s:11:\"fas fa-dove\";s:32:\"<i class=\"fas\"></i> dove\";s:15:\"fas fa-download\";s:36:\"<i class=\"fas\"></i> download\";s:23:\"fas fa-drafting-compass\";s:44:\"<i class=\"fas\"></i> drafting-compass\";s:13:\"fas fa-dragon\";s:34:\"<i class=\"fas\"></i> dragon\";s:19:\"fas fa-draw-polygon\";s:40:\"<i class=\"fas\"></i> draw-polygon\";s:11:\"fas fa-drum\";s:32:\"<i class=\"fas\"></i> drum\";s:20:\"fas fa-drum-steelpan\";s:41:\"<i class=\"fas\"></i> drum-steelpan\";s:21:\"fas fa-drumstick-bite\";s:42:\"<i class=\"fas\"></i> drumstick-bite\";s:15:\"fas fa-dumbbell\";s:36:\"<i class=\"fas\"></i> dumbbell\";s:15:\"fas fa-dumpster\";s:36:\"<i class=\"fas\"></i> dumpster\";s:20:\"fas fa-dumpster-fire\";s:41:\"<i class=\"fas\"></i> dumpster-fire\";s:14:\"fas fa-dungeon\";s:35:\"<i class=\"fas\"></i> dungeon\";s:11:\"fas fa-edit\";s:32:\"<i class=\"fas\"></i> edit\";s:10:\"fas fa-egg\";s:31:\"<i class=\"fas\"></i> egg\";s:12:\"fas fa-eject\";s:33:\"<i class=\"fas\"></i> eject\";s:17:\"fas fa-ellipsis-h\";s:38:\"<i class=\"fas\"></i> ellipsis-h\";s:17:\"fas fa-ellipsis-v\";s:38:\"<i class=\"fas\"></i> ellipsis-v\";s:15:\"fas fa-envelope\";s:36:\"<i class=\"fas\"></i> envelope\";s:20:\"fas fa-envelope-open\";s:41:\"<i class=\"fas\"></i> envelope-open\";s:25:\"fas fa-envelope-open-text\";s:46:\"<i class=\"fas\"></i> envelope-open-text\";s:22:\"fas fa-envelope-square\";s:43:\"<i class=\"fas\"></i> envelope-square\";s:13:\"fas fa-equals\";s:34:\"<i class=\"fas\"></i> equals\";s:13:\"fas fa-eraser\";s:34:\"<i class=\"fas\"></i> eraser\";s:15:\"fas fa-ethernet\";s:36:\"<i class=\"fas\"></i> ethernet\";s:16:\"fas fa-euro-sign\";s:37:\"<i class=\"fas\"></i> euro-sign\";s:19:\"fas fa-exchange-alt\";s:40:\"<i class=\"fas\"></i> exchange-alt\";s:18:\"fas fa-exclamation\";s:39:\"<i class=\"fas\"></i> exclamation\";s:25:\"fas fa-exclamation-circle\";s:46:\"<i class=\"fas\"></i> exclamation-circle\";s:27:\"fas fa-exclamation-triangle\";s:48:\"<i class=\"fas\"></i> exclamation-triangle\";s:13:\"fas fa-expand\";s:34:\"<i class=\"fas\"></i> expand\";s:17:\"fas fa-expand-alt\";s:38:\"<i class=\"fas\"></i> expand-alt\";s:24:\"fas fa-expand-arrows-alt\";s:45:\"<i class=\"fas\"></i> expand-arrows-alt\";s:24:\"fas fa-external-link-alt\";s:45:\"<i class=\"fas\"></i> external-link-alt\";s:31:\"fas fa-external-link-square-alt\";s:52:\"<i class=\"fas\"></i> external-link-square-alt\";s:10:\"fas fa-eye\";s:31:\"<i class=\"fas\"></i> eye\";s:18:\"fas fa-eye-dropper\";s:39:\"<i class=\"fas\"></i> eye-dropper\";s:16:\"fas fa-eye-slash\";s:37:\"<i class=\"fas\"></i> eye-slash\";s:10:\"fas fa-fan\";s:31:\"<i class=\"fas\"></i> fan\";s:20:\"fas fa-fast-backward\";s:41:\"<i class=\"fas\"></i> fast-backward\";s:19:\"fas fa-fast-forward\";s:40:\"<i class=\"fas\"></i> fast-forward\";s:13:\"fas fa-faucet\";s:34:\"<i class=\"fas\"></i> faucet\";s:10:\"fas fa-fax\";s:31:\"<i class=\"fas\"></i> fax\";s:14:\"fas fa-feather\";s:35:\"<i class=\"fas\"></i> feather\";s:18:\"fas fa-feather-alt\";s:39:\"<i class=\"fas\"></i> feather-alt\";s:13:\"fas fa-female\";s:34:\"<i class=\"fas\"></i> female\";s:18:\"fas fa-fighter-jet\";s:39:\"<i class=\"fas\"></i> fighter-jet\";s:11:\"fas fa-file\";s:32:\"<i class=\"fas\"></i> file\";s:15:\"fas fa-file-alt\";s:36:\"<i class=\"fas\"></i> file-alt\";s:19:\"fas fa-file-archive\";s:40:\"<i class=\"fas\"></i> file-archive\";s:17:\"fas fa-file-audio\";s:38:\"<i class=\"fas\"></i> file-audio\";s:16:\"fas fa-file-code\";s:37:\"<i class=\"fas\"></i> file-code\";s:20:\"fas fa-file-contract\";s:41:\"<i class=\"fas\"></i> file-contract\";s:15:\"fas fa-file-csv\";s:36:\"<i class=\"fas\"></i> file-csv\";s:20:\"fas fa-file-download\";s:41:\"<i class=\"fas\"></i> file-download\";s:17:\"fas fa-file-excel\";s:38:\"<i class=\"fas\"></i> file-excel\";s:18:\"fas fa-file-export\";s:39:\"<i class=\"fas\"></i> file-export\";s:17:\"fas fa-file-image\";s:38:\"<i class=\"fas\"></i> file-image\";s:18:\"fas fa-file-import\";s:39:\"<i class=\"fas\"></i> file-import\";s:19:\"fas fa-file-invoice\";s:40:\"<i class=\"fas\"></i> file-invoice\";s:26:\"fas fa-file-invoice-dollar\";s:47:\"<i class=\"fas\"></i> file-invoice-dollar\";s:19:\"fas fa-file-medical\";s:40:\"<i class=\"fas\"></i> file-medical\";s:23:\"fas fa-file-medical-alt\";s:44:\"<i class=\"fas\"></i> file-medical-alt\";s:15:\"fas fa-file-pdf\";s:36:\"<i class=\"fas\"></i> file-pdf\";s:22:\"fas fa-file-powerpoint\";s:43:\"<i class=\"fas\"></i> file-powerpoint\";s:24:\"fas fa-file-prescription\";s:45:\"<i class=\"fas\"></i> file-prescription\";s:21:\"fas fa-file-signature\";s:42:\"<i class=\"fas\"></i> file-signature\";s:18:\"fas fa-file-upload\";s:39:\"<i class=\"fas\"></i> file-upload\";s:17:\"fas fa-file-video\";s:38:\"<i class=\"fas\"></i> file-video\";s:16:\"fas fa-file-word\";s:37:\"<i class=\"fas\"></i> file-word\";s:11:\"fas fa-fill\";s:32:\"<i class=\"fas\"></i> fill\";s:16:\"fas fa-fill-drip\";s:37:\"<i class=\"fas\"></i> fill-drip\";s:11:\"fas fa-film\";s:32:\"<i class=\"fas\"></i> film\";s:13:\"fas fa-filter\";s:34:\"<i class=\"fas\"></i> filter\";s:18:\"fas fa-fingerprint\";s:39:\"<i class=\"fas\"></i> fingerprint\";s:11:\"fas fa-fire\";s:32:\"<i class=\"fas\"></i> fire\";s:15:\"fas fa-fire-alt\";s:36:\"<i class=\"fas\"></i> fire-alt\";s:24:\"fas fa-fire-extinguisher\";s:45:\"<i class=\"fas\"></i> fire-extinguisher\";s:16:\"fas fa-first-aid\";s:37:\"<i class=\"fas\"></i> first-aid\";s:11:\"fas fa-fish\";s:32:\"<i class=\"fas\"></i> fish\";s:18:\"fas fa-fist-raised\";s:39:\"<i class=\"fas\"></i> fist-raised\";s:11:\"fas fa-flag\";s:32:\"<i class=\"fas\"></i> flag\";s:21:\"fas fa-flag-checkered\";s:42:\"<i class=\"fas\"></i> flag-checkered\";s:15:\"fas fa-flag-usa\";s:36:\"<i class=\"fas\"></i> flag-usa\";s:12:\"fas fa-flask\";s:33:\"<i class=\"fas\"></i> flask\";s:14:\"fas fa-flushed\";s:35:\"<i class=\"fas\"></i> flushed\";s:13:\"fas fa-folder\";s:34:\"<i class=\"fas\"></i> folder\";s:19:\"fas fa-folder-minus\";s:40:\"<i class=\"fas\"></i> folder-minus\";s:18:\"fas fa-folder-open\";s:39:\"<i class=\"fas\"></i> folder-open\";s:18:\"fas fa-folder-plus\";s:39:\"<i class=\"fas\"></i> folder-plus\";s:11:\"fas fa-font\";s:32:\"<i class=\"fas\"></i> font\";s:29:\"fas fa-font-awesome-logo-full\";s:50:\"<i class=\"fas\"></i> font-awesome-logo-full\";s:20:\"fas fa-football-ball\";s:41:\"<i class=\"fas\"></i> football-ball\";s:14:\"fas fa-forward\";s:35:\"<i class=\"fas\"></i> forward\";s:11:\"fas fa-frog\";s:32:\"<i class=\"fas\"></i> frog\";s:12:\"fas fa-frown\";s:33:\"<i class=\"fas\"></i> frown\";s:17:\"fas fa-frown-open\";s:38:\"<i class=\"fas\"></i> frown-open\";s:20:\"fas fa-funnel-dollar\";s:41:\"<i class=\"fas\"></i> funnel-dollar\";s:13:\"fas fa-futbol\";s:34:\"<i class=\"fas\"></i> futbol\";s:14:\"fas fa-gamepad\";s:35:\"<i class=\"fas\"></i> gamepad\";s:15:\"fas fa-gas-pump\";s:36:\"<i class=\"fas\"></i> gas-pump\";s:12:\"fas fa-gavel\";s:33:\"<i class=\"fas\"></i> gavel\";s:10:\"fas fa-gem\";s:31:\"<i class=\"fas\"></i> gem\";s:17:\"fas fa-genderless\";s:38:\"<i class=\"fas\"></i> genderless\";s:12:\"fas fa-ghost\";s:33:\"<i class=\"fas\"></i> ghost\";s:11:\"fas fa-gift\";s:32:\"<i class=\"fas\"></i> gift\";s:12:\"fas fa-gifts\";s:33:\"<i class=\"fas\"></i> gifts\";s:19:\"fas fa-glass-cheers\";s:40:\"<i class=\"fas\"></i> glass-cheers\";s:20:\"fas fa-glass-martini\";s:41:\"<i class=\"fas\"></i> glass-martini\";s:24:\"fas fa-glass-martini-alt\";s:45:\"<i class=\"fas\"></i> glass-martini-alt\";s:20:\"fas fa-glass-whiskey\";s:41:\"<i class=\"fas\"></i> glass-whiskey\";s:14:\"fas fa-glasses\";s:35:\"<i class=\"fas\"></i> glasses\";s:12:\"fas fa-globe\";s:33:\"<i class=\"fas\"></i> globe\";s:19:\"fas fa-globe-africa\";s:40:\"<i class=\"fas\"></i> globe-africa\";s:21:\"fas fa-globe-americas\";s:42:\"<i class=\"fas\"></i> globe-americas\";s:17:\"fas fa-globe-asia\";s:38:\"<i class=\"fas\"></i> globe-asia\";s:19:\"fas fa-globe-europe\";s:40:\"<i class=\"fas\"></i> globe-europe\";s:16:\"fas fa-golf-ball\";s:37:\"<i class=\"fas\"></i> golf-ball\";s:14:\"fas fa-gopuram\";s:35:\"<i class=\"fas\"></i> gopuram\";s:21:\"fas fa-graduation-cap\";s:42:\"<i class=\"fas\"></i> graduation-cap\";s:19:\"fas fa-greater-than\";s:40:\"<i class=\"fas\"></i> greater-than\";s:25:\"fas fa-greater-than-equal\";s:46:\"<i class=\"fas\"></i> greater-than-equal\";s:14:\"fas fa-grimace\";s:35:\"<i class=\"fas\"></i> grimace\";s:11:\"fas fa-grin\";s:32:\"<i class=\"fas\"></i> grin\";s:15:\"fas fa-grin-alt\";s:36:\"<i class=\"fas\"></i> grin-alt\";s:16:\"fas fa-grin-beam\";s:37:\"<i class=\"fas\"></i> grin-beam\";s:22:\"fas fa-grin-beam-sweat\";s:43:\"<i class=\"fas\"></i> grin-beam-sweat\";s:18:\"fas fa-grin-hearts\";s:39:\"<i class=\"fas\"></i> grin-hearts\";s:18:\"fas fa-grin-squint\";s:39:\"<i class=\"fas\"></i> grin-squint\";s:24:\"fas fa-grin-squint-tears\";s:45:\"<i class=\"fas\"></i> grin-squint-tears\";s:17:\"fas fa-grin-stars\";s:38:\"<i class=\"fas\"></i> grin-stars\";s:17:\"fas fa-grin-tears\";s:38:\"<i class=\"fas\"></i> grin-tears\";s:18:\"fas fa-grin-tongue\";s:39:\"<i class=\"fas\"></i> grin-tongue\";s:25:\"fas fa-grin-tongue-squint\";s:46:\"<i class=\"fas\"></i> grin-tongue-squint\";s:23:\"fas fa-grin-tongue-wink\";s:44:\"<i class=\"fas\"></i> grin-tongue-wink\";s:16:\"fas fa-grin-wink\";s:37:\"<i class=\"fas\"></i> grin-wink\";s:22:\"fas fa-grip-horizontal\";s:43:\"<i class=\"fas\"></i> grip-horizontal\";s:17:\"fas fa-grip-lines\";s:38:\"<i class=\"fas\"></i> grip-lines\";s:26:\"fas fa-grip-lines-vertical\";s:47:\"<i class=\"fas\"></i> grip-lines-vertical\";s:20:\"fas fa-grip-vertical\";s:41:\"<i class=\"fas\"></i> grip-vertical\";s:13:\"fas fa-guitar\";s:34:\"<i class=\"fas\"></i> guitar\";s:15:\"fas fa-h-square\";s:36:\"<i class=\"fas\"></i> h-square\";s:16:\"fas fa-hamburger\";s:37:\"<i class=\"fas\"></i> hamburger\";s:13:\"fas fa-hammer\";s:34:\"<i class=\"fas\"></i> hammer\";s:12:\"fas fa-hamsa\";s:33:\"<i class=\"fas\"></i> hamsa\";s:19:\"fas fa-hand-holding\";s:40:\"<i class=\"fas\"></i> hand-holding\";s:25:\"fas fa-hand-holding-heart\";s:46:\"<i class=\"fas\"></i> hand-holding-heart\";s:27:\"fas fa-hand-holding-medical\";s:48:\"<i class=\"fas\"></i> hand-holding-medical\";s:23:\"fas fa-hand-holding-usd\";s:44:\"<i class=\"fas\"></i> hand-holding-usd\";s:25:\"fas fa-hand-holding-water\";s:46:\"<i class=\"fas\"></i> hand-holding-water\";s:18:\"fas fa-hand-lizard\";s:39:\"<i class=\"fas\"></i> hand-lizard\";s:25:\"fas fa-hand-middle-finger\";s:46:\"<i class=\"fas\"></i> hand-middle-finger\";s:17:\"fas fa-hand-paper\";s:38:\"<i class=\"fas\"></i> hand-paper\";s:17:\"fas fa-hand-peace\";s:38:\"<i class=\"fas\"></i> hand-peace\";s:22:\"fas fa-hand-point-down\";s:43:\"<i class=\"fas\"></i> hand-point-down\";s:22:\"fas fa-hand-point-left\";s:43:\"<i class=\"fas\"></i> hand-point-left\";s:23:\"fas fa-hand-point-right\";s:44:\"<i class=\"fas\"></i> hand-point-right\";s:20:\"fas fa-hand-point-up\";s:41:\"<i class=\"fas\"></i> hand-point-up\";s:19:\"fas fa-hand-pointer\";s:40:\"<i class=\"fas\"></i> hand-pointer\";s:16:\"fas fa-hand-rock\";s:37:\"<i class=\"fas\"></i> hand-rock\";s:20:\"fas fa-hand-scissors\";s:41:\"<i class=\"fas\"></i> hand-scissors\";s:20:\"fas fa-hand-sparkles\";s:41:\"<i class=\"fas\"></i> hand-sparkles\";s:17:\"fas fa-hand-spock\";s:38:\"<i class=\"fas\"></i> hand-spock\";s:12:\"fas fa-hands\";s:33:\"<i class=\"fas\"></i> hands\";s:20:\"fas fa-hands-helping\";s:41:\"<i class=\"fas\"></i> hands-helping\";s:17:\"fas fa-hands-wash\";s:38:\"<i class=\"fas\"></i> hands-wash\";s:16:\"fas fa-handshake\";s:37:\"<i class=\"fas\"></i> handshake\";s:26:\"fas fa-handshake-alt-slash\";s:47:\"<i class=\"fas\"></i> handshake-alt-slash\";s:22:\"fas fa-handshake-slash\";s:43:\"<i class=\"fas\"></i> handshake-slash\";s:15:\"fas fa-hanukiah\";s:36:\"<i class=\"fas\"></i> hanukiah\";s:15:\"fas fa-hard-hat\";s:36:\"<i class=\"fas\"></i> hard-hat\";s:14:\"fas fa-hashtag\";s:35:\"<i class=\"fas\"></i> hashtag\";s:17:\"fas fa-hat-cowboy\";s:38:\"<i class=\"fas\"></i> hat-cowboy\";s:22:\"fas fa-hat-cowboy-side\";s:43:\"<i class=\"fas\"></i> hat-cowboy-side\";s:17:\"fas fa-hat-wizard\";s:38:\"<i class=\"fas\"></i> hat-wizard\";s:10:\"fas fa-hdd\";s:31:\"<i class=\"fas\"></i> hdd\";s:22:\"fas fa-head-side-cough\";s:43:\"<i class=\"fas\"></i> head-side-cough\";s:28:\"fas fa-head-side-cough-slash\";s:49:\"<i class=\"fas\"></i> head-side-cough-slash\";s:21:\"fas fa-head-side-mask\";s:42:\"<i class=\"fas\"></i> head-side-mask\";s:22:\"fas fa-head-side-virus\";s:43:\"<i class=\"fas\"></i> head-side-virus\";s:14:\"fas fa-heading\";s:35:\"<i class=\"fas\"></i> heading\";s:17:\"fas fa-headphones\";s:38:\"<i class=\"fas\"></i> headphones\";s:21:\"fas fa-headphones-alt\";s:42:\"<i class=\"fas\"></i> headphones-alt\";s:14:\"fas fa-headset\";s:35:\"<i class=\"fas\"></i> headset\";s:12:\"fas fa-heart\";s:33:\"<i class=\"fas\"></i> heart\";s:19:\"fas fa-heart-broken\";s:40:\"<i class=\"fas\"></i> heart-broken\";s:16:\"fas fa-heartbeat\";s:37:\"<i class=\"fas\"></i> heartbeat\";s:17:\"fas fa-helicopter\";s:38:\"<i class=\"fas\"></i> helicopter\";s:18:\"fas fa-highlighter\";s:39:\"<i class=\"fas\"></i> highlighter\";s:13:\"fas fa-hiking\";s:34:\"<i class=\"fas\"></i> hiking\";s:12:\"fas fa-hippo\";s:33:\"<i class=\"fas\"></i> hippo\";s:14:\"fas fa-history\";s:35:\"<i class=\"fas\"></i> history\";s:18:\"fas fa-hockey-puck\";s:39:\"<i class=\"fas\"></i> hockey-puck\";s:18:\"fas fa-holly-berry\";s:39:\"<i class=\"fas\"></i> holly-berry\";s:11:\"fas fa-home\";s:32:\"<i class=\"fas\"></i> home\";s:12:\"fas fa-horse\";s:33:\"<i class=\"fas\"></i> horse\";s:17:\"fas fa-horse-head\";s:38:\"<i class=\"fas\"></i> horse-head\";s:15:\"fas fa-hospital\";s:36:\"<i class=\"fas\"></i> hospital\";s:19:\"fas fa-hospital-alt\";s:40:\"<i class=\"fas\"></i> hospital-alt\";s:22:\"fas fa-hospital-symbol\";s:43:\"<i class=\"fas\"></i> hospital-symbol\";s:20:\"fas fa-hospital-user\";s:41:\"<i class=\"fas\"></i> hospital-user\";s:14:\"fas fa-hot-tub\";s:35:\"<i class=\"fas\"></i> hot-tub\";s:13:\"fas fa-hotdog\";s:34:\"<i class=\"fas\"></i> hotdog\";s:12:\"fas fa-hotel\";s:33:\"<i class=\"fas\"></i> hotel\";s:16:\"fas fa-hourglass\";s:37:\"<i class=\"fas\"></i> hourglass\";s:20:\"fas fa-hourglass-end\";s:41:\"<i class=\"fas\"></i> hourglass-end\";s:21:\"fas fa-hourglass-half\";s:42:\"<i class=\"fas\"></i> hourglass-half\";s:22:\"fas fa-hourglass-start\";s:43:\"<i class=\"fas\"></i> hourglass-start\";s:19:\"fas fa-house-damage\";s:40:\"<i class=\"fas\"></i> house-damage\";s:17:\"fas fa-house-user\";s:38:\"<i class=\"fas\"></i> house-user\";s:14:\"fas fa-hryvnia\";s:35:\"<i class=\"fas\"></i> hryvnia\";s:15:\"fas fa-i-cursor\";s:36:\"<i class=\"fas\"></i> i-cursor\";s:16:\"fas fa-ice-cream\";s:37:\"<i class=\"fas\"></i> ice-cream\";s:14:\"fas fa-icicles\";s:35:\"<i class=\"fas\"></i> icicles\";s:12:\"fas fa-icons\";s:33:\"<i class=\"fas\"></i> icons\";s:15:\"fas fa-id-badge\";s:36:\"<i class=\"fas\"></i> id-badge\";s:14:\"fas fa-id-card\";s:35:\"<i class=\"fas\"></i> id-card\";s:18:\"fas fa-id-card-alt\";s:39:\"<i class=\"fas\"></i> id-card-alt\";s:12:\"fas fa-igloo\";s:33:\"<i class=\"fas\"></i> igloo\";s:12:\"fas fa-image\";s:33:\"<i class=\"fas\"></i> image\";s:13:\"fas fa-images\";s:34:\"<i class=\"fas\"></i> images\";s:12:\"fas fa-inbox\";s:33:\"<i class=\"fas\"></i> inbox\";s:13:\"fas fa-indent\";s:34:\"<i class=\"fas\"></i> indent\";s:15:\"fas fa-industry\";s:36:\"<i class=\"fas\"></i> industry\";s:15:\"fas fa-infinity\";s:36:\"<i class=\"fas\"></i> infinity\";s:11:\"fas fa-info\";s:32:\"<i class=\"fas\"></i> info\";s:18:\"fas fa-info-circle\";s:39:\"<i class=\"fas\"></i> info-circle\";s:13:\"fas fa-italic\";s:34:\"<i class=\"fas\"></i> italic\";s:11:\"fas fa-jedi\";s:32:\"<i class=\"fas\"></i> jedi\";s:12:\"fas fa-joint\";s:33:\"<i class=\"fas\"></i> joint\";s:21:\"fas fa-journal-whills\";s:42:\"<i class=\"fas\"></i> journal-whills\";s:12:\"fas fa-kaaba\";s:33:\"<i class=\"fas\"></i> kaaba\";s:10:\"fas fa-key\";s:31:\"<i class=\"fas\"></i> key\";s:15:\"fas fa-keyboard\";s:36:\"<i class=\"fas\"></i> keyboard\";s:13:\"fas fa-khanda\";s:34:\"<i class=\"fas\"></i> khanda\";s:11:\"fas fa-kiss\";s:32:\"<i class=\"fas\"></i> kiss\";s:16:\"fas fa-kiss-beam\";s:37:\"<i class=\"fas\"></i> kiss-beam\";s:22:\"fas fa-kiss-wink-heart\";s:43:\"<i class=\"fas\"></i> kiss-wink-heart\";s:16:\"fas fa-kiwi-bird\";s:37:\"<i class=\"fas\"></i> kiwi-bird\";s:15:\"fas fa-landmark\";s:36:\"<i class=\"fas\"></i> landmark\";s:15:\"fas fa-language\";s:36:\"<i class=\"fas\"></i> language\";s:13:\"fas fa-laptop\";s:34:\"<i class=\"fas\"></i> laptop\";s:18:\"fas fa-laptop-code\";s:39:\"<i class=\"fas\"></i> laptop-code\";s:19:\"fas fa-laptop-house\";s:40:\"<i class=\"fas\"></i> laptop-house\";s:21:\"fas fa-laptop-medical\";s:42:\"<i class=\"fas\"></i> laptop-medical\";s:12:\"fas fa-laugh\";s:33:\"<i class=\"fas\"></i> laugh\";s:17:\"fas fa-laugh-beam\";s:38:\"<i class=\"fas\"></i> laugh-beam\";s:19:\"fas fa-laugh-squint\";s:40:\"<i class=\"fas\"></i> laugh-squint\";s:17:\"fas fa-laugh-wink\";s:38:\"<i class=\"fas\"></i> laugh-wink\";s:18:\"fas fa-layer-group\";s:39:\"<i class=\"fas\"></i> layer-group\";s:11:\"fas fa-leaf\";s:32:\"<i class=\"fas\"></i> leaf\";s:12:\"fas fa-lemon\";s:33:\"<i class=\"fas\"></i> lemon\";s:16:\"fas fa-less-than\";s:37:\"<i class=\"fas\"></i> less-than\";s:22:\"fas fa-less-than-equal\";s:43:\"<i class=\"fas\"></i> less-than-equal\";s:21:\"fas fa-level-down-alt\";s:42:\"<i class=\"fas\"></i> level-down-alt\";s:19:\"fas fa-level-up-alt\";s:40:\"<i class=\"fas\"></i> level-up-alt\";s:16:\"fas fa-life-ring\";s:37:\"<i class=\"fas\"></i> life-ring\";s:16:\"fas fa-lightbulb\";s:37:\"<i class=\"fas\"></i> lightbulb\";s:11:\"fas fa-link\";s:32:\"<i class=\"fas\"></i> link\";s:16:\"fas fa-lira-sign\";s:37:\"<i class=\"fas\"></i> lira-sign\";s:11:\"fas fa-list\";s:32:\"<i class=\"fas\"></i> list\";s:15:\"fas fa-list-alt\";s:36:\"<i class=\"fas\"></i> list-alt\";s:14:\"fas fa-list-ol\";s:35:\"<i class=\"fas\"></i> list-ol\";s:14:\"fas fa-list-ul\";s:35:\"<i class=\"fas\"></i> list-ul\";s:21:\"fas fa-location-arrow\";s:42:\"<i class=\"fas\"></i> location-arrow\";s:11:\"fas fa-lock\";s:32:\"<i class=\"fas\"></i> lock\";s:16:\"fas fa-lock-open\";s:37:\"<i class=\"fas\"></i> lock-open\";s:26:\"fas fa-long-arrow-alt-down\";s:47:\"<i class=\"fas\"></i> long-arrow-alt-down\";s:26:\"fas fa-long-arrow-alt-left\";s:47:\"<i class=\"fas\"></i> long-arrow-alt-left\";s:27:\"fas fa-long-arrow-alt-right\";s:48:\"<i class=\"fas\"></i> long-arrow-alt-right\";s:24:\"fas fa-long-arrow-alt-up\";s:45:\"<i class=\"fas\"></i> long-arrow-alt-up\";s:17:\"fas fa-low-vision\";s:38:\"<i class=\"fas\"></i> low-vision\";s:19:\"fas fa-luggage-cart\";s:40:\"<i class=\"fas\"></i> luggage-cart\";s:12:\"fas fa-lungs\";s:33:\"<i class=\"fas\"></i> lungs\";s:18:\"fas fa-lungs-virus\";s:39:\"<i class=\"fas\"></i> lungs-virus\";s:12:\"fas fa-magic\";s:33:\"<i class=\"fas\"></i> magic\";s:13:\"fas fa-magnet\";s:34:\"<i class=\"fas\"></i> magnet\";s:16:\"fas fa-mail-bulk\";s:37:\"<i class=\"fas\"></i> mail-bulk\";s:11:\"fas fa-male\";s:32:\"<i class=\"fas\"></i> male\";s:10:\"fas fa-map\";s:31:\"<i class=\"fas\"></i> map\";s:17:\"fas fa-map-marked\";s:38:\"<i class=\"fas\"></i> map-marked\";s:21:\"fas fa-map-marked-alt\";s:42:\"<i class=\"fas\"></i> map-marked-alt\";s:17:\"fas fa-map-marker\";s:38:\"<i class=\"fas\"></i> map-marker\";s:21:\"fas fa-map-marker-alt\";s:42:\"<i class=\"fas\"></i> map-marker-alt\";s:14:\"fas fa-map-pin\";s:35:\"<i class=\"fas\"></i> map-pin\";s:16:\"fas fa-map-signs\";s:37:\"<i class=\"fas\"></i> map-signs\";s:13:\"fas fa-marker\";s:34:\"<i class=\"fas\"></i> marker\";s:11:\"fas fa-mars\";s:32:\"<i class=\"fas\"></i> mars\";s:18:\"fas fa-mars-double\";s:39:\"<i class=\"fas\"></i> mars-double\";s:18:\"fas fa-mars-stroke\";s:39:\"<i class=\"fas\"></i> mars-stroke\";s:20:\"fas fa-mars-stroke-h\";s:41:\"<i class=\"fas\"></i> mars-stroke-h\";s:20:\"fas fa-mars-stroke-v\";s:41:\"<i class=\"fas\"></i> mars-stroke-v\";s:11:\"fas fa-mask\";s:32:\"<i class=\"fas\"></i> mask\";s:12:\"fas fa-medal\";s:33:\"<i class=\"fas\"></i> medal\";s:13:\"fas fa-medkit\";s:34:\"<i class=\"fas\"></i> medkit\";s:10:\"fas fa-meh\";s:31:\"<i class=\"fas\"></i> meh\";s:16:\"fas fa-meh-blank\";s:37:\"<i class=\"fas\"></i> meh-blank\";s:23:\"fas fa-meh-rolling-eyes\";s:44:\"<i class=\"fas\"></i> meh-rolling-eyes\";s:13:\"fas fa-memory\";s:34:\"<i class=\"fas\"></i> memory\";s:14:\"fas fa-menorah\";s:35:\"<i class=\"fas\"></i> menorah\";s:14:\"fas fa-mercury\";s:35:\"<i class=\"fas\"></i> mercury\";s:13:\"fas fa-meteor\";s:34:\"<i class=\"fas\"></i> meteor\";s:16:\"fas fa-microchip\";s:37:\"<i class=\"fas\"></i> microchip\";s:17:\"fas fa-microphone\";s:38:\"<i class=\"fas\"></i> microphone\";s:21:\"fas fa-microphone-alt\";s:42:\"<i class=\"fas\"></i> microphone-alt\";s:27:\"fas fa-microphone-alt-slash\";s:48:\"<i class=\"fas\"></i> microphone-alt-slash\";s:23:\"fas fa-microphone-slash\";s:44:\"<i class=\"fas\"></i> microphone-slash\";s:17:\"fas fa-microscope\";s:38:\"<i class=\"fas\"></i> microscope\";s:12:\"fas fa-minus\";s:33:\"<i class=\"fas\"></i> minus\";s:19:\"fas fa-minus-circle\";s:40:\"<i class=\"fas\"></i> minus-circle\";s:19:\"fas fa-minus-square\";s:40:\"<i class=\"fas\"></i> minus-square\";s:13:\"fas fa-mitten\";s:34:\"<i class=\"fas\"></i> mitten\";s:13:\"fas fa-mobile\";s:34:\"<i class=\"fas\"></i> mobile\";s:17:\"fas fa-mobile-alt\";s:38:\"<i class=\"fas\"></i> mobile-alt\";s:17:\"fas fa-money-bill\";s:38:\"<i class=\"fas\"></i> money-bill\";s:21:\"fas fa-money-bill-alt\";s:42:\"<i class=\"fas\"></i> money-bill-alt\";s:22:\"fas fa-money-bill-wave\";s:43:\"<i class=\"fas\"></i> money-bill-wave\";s:26:\"fas fa-money-bill-wave-alt\";s:47:\"<i class=\"fas\"></i> money-bill-wave-alt\";s:18:\"fas fa-money-check\";s:39:\"<i class=\"fas\"></i> money-check\";s:22:\"fas fa-money-check-alt\";s:43:\"<i class=\"fas\"></i> money-check-alt\";s:15:\"fas fa-monument\";s:36:\"<i class=\"fas\"></i> monument\";s:11:\"fas fa-moon\";s:32:\"<i class=\"fas\"></i> moon\";s:20:\"fas fa-mortar-pestle\";s:41:\"<i class=\"fas\"></i> mortar-pestle\";s:13:\"fas fa-mosque\";s:34:\"<i class=\"fas\"></i> mosque\";s:17:\"fas fa-motorcycle\";s:38:\"<i class=\"fas\"></i> motorcycle\";s:15:\"fas fa-mountain\";s:36:\"<i class=\"fas\"></i> mountain\";s:12:\"fas fa-mouse\";s:33:\"<i class=\"fas\"></i> mouse\";s:20:\"fas fa-mouse-pointer\";s:41:\"<i class=\"fas\"></i> mouse-pointer\";s:14:\"fas fa-mug-hot\";s:35:\"<i class=\"fas\"></i> mug-hot\";s:12:\"fas fa-music\";s:33:\"<i class=\"fas\"></i> music\";s:20:\"fas fa-network-wired\";s:41:\"<i class=\"fas\"></i> network-wired\";s:13:\"fas fa-neuter\";s:34:\"<i class=\"fas\"></i> neuter\";s:16:\"fas fa-newspaper\";s:37:\"<i class=\"fas\"></i> newspaper\";s:16:\"fas fa-not-equal\";s:37:\"<i class=\"fas\"></i> not-equal\";s:20:\"fas fa-notes-medical\";s:41:\"<i class=\"fas\"></i> notes-medical\";s:19:\"fas fa-object-group\";s:40:\"<i class=\"fas\"></i> object-group\";s:21:\"fas fa-object-ungroup\";s:42:\"<i class=\"fas\"></i> object-ungroup\";s:14:\"fas fa-oil-can\";s:35:\"<i class=\"fas\"></i> oil-can\";s:9:\"fas fa-om\";s:30:\"<i class=\"fas\"></i> om\";s:12:\"fas fa-otter\";s:33:\"<i class=\"fas\"></i> otter\";s:14:\"fas fa-outdent\";s:35:\"<i class=\"fas\"></i> outdent\";s:12:\"fas fa-pager\";s:33:\"<i class=\"fas\"></i> pager\";s:18:\"fas fa-paint-brush\";s:39:\"<i class=\"fas\"></i> paint-brush\";s:19:\"fas fa-paint-roller\";s:40:\"<i class=\"fas\"></i> paint-roller\";s:14:\"fas fa-palette\";s:35:\"<i class=\"fas\"></i> palette\";s:13:\"fas fa-pallet\";s:34:\"<i class=\"fas\"></i> pallet\";s:18:\"fas fa-paper-plane\";s:39:\"<i class=\"fas\"></i> paper-plane\";s:16:\"fas fa-paperclip\";s:37:\"<i class=\"fas\"></i> paperclip\";s:20:\"fas fa-parachute-box\";s:41:\"<i class=\"fas\"></i> parachute-box\";s:16:\"fas fa-paragraph\";s:37:\"<i class=\"fas\"></i> paragraph\";s:14:\"fas fa-parking\";s:35:\"<i class=\"fas\"></i> parking\";s:15:\"fas fa-passport\";s:36:\"<i class=\"fas\"></i> passport\";s:21:\"fas fa-pastafarianism\";s:42:\"<i class=\"fas\"></i> pastafarianism\";s:12:\"fas fa-paste\";s:33:\"<i class=\"fas\"></i> paste\";s:12:\"fas fa-pause\";s:33:\"<i class=\"fas\"></i> pause\";s:19:\"fas fa-pause-circle\";s:40:\"<i class=\"fas\"></i> pause-circle\";s:10:\"fas fa-paw\";s:31:\"<i class=\"fas\"></i> paw\";s:12:\"fas fa-peace\";s:33:\"<i class=\"fas\"></i> peace\";s:10:\"fas fa-pen\";s:31:\"<i class=\"fas\"></i> pen\";s:14:\"fas fa-pen-alt\";s:35:\"<i class=\"fas\"></i> pen-alt\";s:16:\"fas fa-pen-fancy\";s:37:\"<i class=\"fas\"></i> pen-fancy\";s:14:\"fas fa-pen-nib\";s:35:\"<i class=\"fas\"></i> pen-nib\";s:17:\"fas fa-pen-square\";s:38:\"<i class=\"fas\"></i> pen-square\";s:17:\"fas fa-pencil-alt\";s:38:\"<i class=\"fas\"></i> pencil-alt\";s:19:\"fas fa-pencil-ruler\";s:40:\"<i class=\"fas\"></i> pencil-ruler\";s:20:\"fas fa-people-arrows\";s:41:\"<i class=\"fas\"></i> people-arrows\";s:19:\"fas fa-people-carry\";s:40:\"<i class=\"fas\"></i> people-carry\";s:17:\"fas fa-pepper-hot\";s:38:\"<i class=\"fas\"></i> pepper-hot\";s:14:\"fas fa-percent\";s:35:\"<i class=\"fas\"></i> percent\";s:17:\"fas fa-percentage\";s:38:\"<i class=\"fas\"></i> percentage\";s:19:\"fas fa-person-booth\";s:40:\"<i class=\"fas\"></i> person-booth\";s:12:\"fas fa-phone\";s:33:\"<i class=\"fas\"></i> phone\";s:16:\"fas fa-phone-alt\";s:37:\"<i class=\"fas\"></i> phone-alt\";s:18:\"fas fa-phone-slash\";s:39:\"<i class=\"fas\"></i> phone-slash\";s:19:\"fas fa-phone-square\";s:40:\"<i class=\"fas\"></i> phone-square\";s:23:\"fas fa-phone-square-alt\";s:44:\"<i class=\"fas\"></i> phone-square-alt\";s:19:\"fas fa-phone-volume\";s:40:\"<i class=\"fas\"></i> phone-volume\";s:18:\"fas fa-photo-video\";s:39:\"<i class=\"fas\"></i> photo-video\";s:17:\"fas fa-piggy-bank\";s:38:\"<i class=\"fas\"></i> piggy-bank\";s:12:\"fas fa-pills\";s:33:\"<i class=\"fas\"></i> pills\";s:18:\"fas fa-pizza-slice\";s:39:\"<i class=\"fas\"></i> pizza-slice\";s:23:\"fas fa-place-of-worship\";s:44:\"<i class=\"fas\"></i> place-of-worship\";s:12:\"fas fa-plane\";s:33:\"<i class=\"fas\"></i> plane\";s:20:\"fas fa-plane-arrival\";s:41:\"<i class=\"fas\"></i> plane-arrival\";s:22:\"fas fa-plane-departure\";s:43:\"<i class=\"fas\"></i> plane-departure\";s:18:\"fas fa-plane-slash\";s:39:\"<i class=\"fas\"></i> plane-slash\";s:11:\"fas fa-play\";s:32:\"<i class=\"fas\"></i> play\";s:18:\"fas fa-play-circle\";s:39:\"<i class=\"fas\"></i> play-circle\";s:11:\"fas fa-plug\";s:32:\"<i class=\"fas\"></i> plug\";s:11:\"fas fa-plus\";s:32:\"<i class=\"fas\"></i> plus\";s:18:\"fas fa-plus-circle\";s:39:\"<i class=\"fas\"></i> plus-circle\";s:18:\"fas fa-plus-square\";s:39:\"<i class=\"fas\"></i> plus-square\";s:14:\"fas fa-podcast\";s:35:\"<i class=\"fas\"></i> podcast\";s:11:\"fas fa-poll\";s:32:\"<i class=\"fas\"></i> poll\";s:13:\"fas fa-poll-h\";s:34:\"<i class=\"fas\"></i> poll-h\";s:10:\"fas fa-poo\";s:31:\"<i class=\"fas\"></i> poo\";s:16:\"fas fa-poo-storm\";s:37:\"<i class=\"fas\"></i> poo-storm\";s:11:\"fas fa-poop\";s:32:\"<i class=\"fas\"></i> poop\";s:15:\"fas fa-portrait\";s:36:\"<i class=\"fas\"></i> portrait\";s:17:\"fas fa-pound-sign\";s:38:\"<i class=\"fas\"></i> pound-sign\";s:16:\"fas fa-power-off\";s:37:\"<i class=\"fas\"></i> power-off\";s:11:\"fas fa-pray\";s:32:\"<i class=\"fas\"></i> pray\";s:20:\"fas fa-praying-hands\";s:41:\"<i class=\"fas\"></i> praying-hands\";s:19:\"fas fa-prescription\";s:40:\"<i class=\"fas\"></i> prescription\";s:26:\"fas fa-prescription-bottle\";s:47:\"<i class=\"fas\"></i> prescription-bottle\";s:30:\"fas fa-prescription-bottle-alt\";s:51:\"<i class=\"fas\"></i> prescription-bottle-alt\";s:12:\"fas fa-print\";s:33:\"<i class=\"fas\"></i> print\";s:17:\"fas fa-procedures\";s:38:\"<i class=\"fas\"></i> procedures\";s:22:\"fas fa-project-diagram\";s:43:\"<i class=\"fas\"></i> project-diagram\";s:19:\"fas fa-pump-medical\";s:40:\"<i class=\"fas\"></i> pump-medical\";s:16:\"fas fa-pump-soap\";s:37:\"<i class=\"fas\"></i> pump-soap\";s:19:\"fas fa-puzzle-piece\";s:40:\"<i class=\"fas\"></i> puzzle-piece\";s:13:\"fas fa-qrcode\";s:34:\"<i class=\"fas\"></i> qrcode\";s:15:\"fas fa-question\";s:36:\"<i class=\"fas\"></i> question\";s:22:\"fas fa-question-circle\";s:43:\"<i class=\"fas\"></i> question-circle\";s:16:\"fas fa-quidditch\";s:37:\"<i class=\"fas\"></i> quidditch\";s:17:\"fas fa-quote-left\";s:38:\"<i class=\"fas\"></i> quote-left\";s:18:\"fas fa-quote-right\";s:39:\"<i class=\"fas\"></i> quote-right\";s:12:\"fas fa-quran\";s:33:\"<i class=\"fas\"></i> quran\";s:16:\"fas fa-radiation\";s:37:\"<i class=\"fas\"></i> radiation\";s:20:\"fas fa-radiation-alt\";s:41:\"<i class=\"fas\"></i> radiation-alt\";s:14:\"fas fa-rainbow\";s:35:\"<i class=\"fas\"></i> rainbow\";s:13:\"fas fa-random\";s:34:\"<i class=\"fas\"></i> random\";s:14:\"fas fa-receipt\";s:35:\"<i class=\"fas\"></i> receipt\";s:19:\"fas fa-record-vinyl\";s:40:\"<i class=\"fas\"></i> record-vinyl\";s:14:\"fas fa-recycle\";s:35:\"<i class=\"fas\"></i> recycle\";s:11:\"fas fa-redo\";s:32:\"<i class=\"fas\"></i> redo\";s:15:\"fas fa-redo-alt\";s:36:\"<i class=\"fas\"></i> redo-alt\";s:17:\"fas fa-registered\";s:38:\"<i class=\"fas\"></i> registered\";s:20:\"fas fa-remove-format\";s:41:\"<i class=\"fas\"></i> remove-format\";s:12:\"fas fa-reply\";s:33:\"<i class=\"fas\"></i> reply\";s:16:\"fas fa-reply-all\";s:37:\"<i class=\"fas\"></i> reply-all\";s:17:\"fas fa-republican\";s:38:\"<i class=\"fas\"></i> republican\";s:15:\"fas fa-restroom\";s:36:\"<i class=\"fas\"></i> restroom\";s:14:\"fas fa-retweet\";s:35:\"<i class=\"fas\"></i> retweet\";s:13:\"fas fa-ribbon\";s:34:\"<i class=\"fas\"></i> ribbon\";s:11:\"fas fa-ring\";s:32:\"<i class=\"fas\"></i> ring\";s:11:\"fas fa-road\";s:32:\"<i class=\"fas\"></i> road\";s:12:\"fas fa-robot\";s:33:\"<i class=\"fas\"></i> robot\";s:13:\"fas fa-rocket\";s:34:\"<i class=\"fas\"></i> rocket\";s:12:\"fas fa-route\";s:33:\"<i class=\"fas\"></i> route\";s:10:\"fas fa-rss\";s:31:\"<i class=\"fas\"></i> rss\";s:17:\"fas fa-rss-square\";s:38:\"<i class=\"fas\"></i> rss-square\";s:17:\"fas fa-ruble-sign\";s:38:\"<i class=\"fas\"></i> ruble-sign\";s:12:\"fas fa-ruler\";s:33:\"<i class=\"fas\"></i> ruler\";s:21:\"fas fa-ruler-combined\";s:42:\"<i class=\"fas\"></i> ruler-combined\";s:23:\"fas fa-ruler-horizontal\";s:44:\"<i class=\"fas\"></i> ruler-horizontal\";s:21:\"fas fa-ruler-vertical\";s:42:\"<i class=\"fas\"></i> ruler-vertical\";s:14:\"fas fa-running\";s:35:\"<i class=\"fas\"></i> running\";s:17:\"fas fa-rupee-sign\";s:38:\"<i class=\"fas\"></i> rupee-sign\";s:14:\"fas fa-sad-cry\";s:35:\"<i class=\"fas\"></i> sad-cry\";s:15:\"fas fa-sad-tear\";s:36:\"<i class=\"fas\"></i> sad-tear\";s:16:\"fas fa-satellite\";s:37:\"<i class=\"fas\"></i> satellite\";s:21:\"fas fa-satellite-dish\";s:42:\"<i class=\"fas\"></i> satellite-dish\";s:11:\"fas fa-save\";s:32:\"<i class=\"fas\"></i> save\";s:13:\"fas fa-school\";s:34:\"<i class=\"fas\"></i> school\";s:18:\"fas fa-screwdriver\";s:39:\"<i class=\"fas\"></i> screwdriver\";s:13:\"fas fa-scroll\";s:34:\"<i class=\"fas\"></i> scroll\";s:14:\"fas fa-sd-card\";s:35:\"<i class=\"fas\"></i> sd-card\";s:13:\"fas fa-search\";s:34:\"<i class=\"fas\"></i> search\";s:20:\"fas fa-search-dollar\";s:41:\"<i class=\"fas\"></i> search-dollar\";s:22:\"fas fa-search-location\";s:43:\"<i class=\"fas\"></i> search-location\";s:19:\"fas fa-search-minus\";s:40:\"<i class=\"fas\"></i> search-minus\";s:18:\"fas fa-search-plus\";s:39:\"<i class=\"fas\"></i> search-plus\";s:15:\"fas fa-seedling\";s:36:\"<i class=\"fas\"></i> seedling\";s:13:\"fas fa-server\";s:34:\"<i class=\"fas\"></i> server\";s:13:\"fas fa-shapes\";s:34:\"<i class=\"fas\"></i> shapes\";s:12:\"fas fa-share\";s:33:\"<i class=\"fas\"></i> share\";s:16:\"fas fa-share-alt\";s:37:\"<i class=\"fas\"></i> share-alt\";s:23:\"fas fa-share-alt-square\";s:44:\"<i class=\"fas\"></i> share-alt-square\";s:19:\"fas fa-share-square\";s:40:\"<i class=\"fas\"></i> share-square\";s:18:\"fas fa-shekel-sign\";s:39:\"<i class=\"fas\"></i> shekel-sign\";s:17:\"fas fa-shield-alt\";s:38:\"<i class=\"fas\"></i> shield-alt\";s:19:\"fas fa-shield-virus\";s:40:\"<i class=\"fas\"></i> shield-virus\";s:11:\"fas fa-ship\";s:32:\"<i class=\"fas\"></i> ship\";s:20:\"fas fa-shipping-fast\";s:41:\"<i class=\"fas\"></i> shipping-fast\";s:18:\"fas fa-shoe-prints\";s:39:\"<i class=\"fas\"></i> shoe-prints\";s:19:\"fas fa-shopping-bag\";s:40:\"<i class=\"fas\"></i> shopping-bag\";s:22:\"fas fa-shopping-basket\";s:43:\"<i class=\"fas\"></i> shopping-basket\";s:20:\"fas fa-shopping-cart\";s:41:\"<i class=\"fas\"></i> shopping-cart\";s:13:\"fas fa-shower\";s:34:\"<i class=\"fas\"></i> shower\";s:18:\"fas fa-shuttle-van\";s:39:\"<i class=\"fas\"></i> shuttle-van\";s:11:\"fas fa-sign\";s:32:\"<i class=\"fas\"></i> sign\";s:18:\"fas fa-sign-in-alt\";s:39:\"<i class=\"fas\"></i> sign-in-alt\";s:20:\"fas fa-sign-language\";s:41:\"<i class=\"fas\"></i> sign-language\";s:19:\"fas fa-sign-out-alt\";s:40:\"<i class=\"fas\"></i> sign-out-alt\";s:13:\"fas fa-signal\";s:34:\"<i class=\"fas\"></i> signal\";s:16:\"fas fa-signature\";s:37:\"<i class=\"fas\"></i> signature\";s:15:\"fas fa-sim-card\";s:36:\"<i class=\"fas\"></i> sim-card\";s:11:\"fas fa-sink\";s:32:\"<i class=\"fas\"></i> sink\";s:14:\"fas fa-sitemap\";s:35:\"<i class=\"fas\"></i> sitemap\";s:14:\"fas fa-skating\";s:35:\"<i class=\"fas\"></i> skating\";s:13:\"fas fa-skiing\";s:34:\"<i class=\"fas\"></i> skiing\";s:20:\"fas fa-skiing-nordic\";s:41:\"<i class=\"fas\"></i> skiing-nordic\";s:12:\"fas fa-skull\";s:33:\"<i class=\"fas\"></i> skull\";s:23:\"fas fa-skull-crossbones\";s:44:\"<i class=\"fas\"></i> skull-crossbones\";s:12:\"fas fa-slash\";s:33:\"<i class=\"fas\"></i> slash\";s:13:\"fas fa-sleigh\";s:34:\"<i class=\"fas\"></i> sleigh\";s:16:\"fas fa-sliders-h\";s:37:\"<i class=\"fas\"></i> sliders-h\";s:12:\"fas fa-smile\";s:33:\"<i class=\"fas\"></i> smile\";s:17:\"fas fa-smile-beam\";s:38:\"<i class=\"fas\"></i> smile-beam\";s:17:\"fas fa-smile-wink\";s:38:\"<i class=\"fas\"></i> smile-wink\";s:11:\"fas fa-smog\";s:32:\"<i class=\"fas\"></i> smog\";s:14:\"fas fa-smoking\";s:35:\"<i class=\"fas\"></i> smoking\";s:18:\"fas fa-smoking-ban\";s:39:\"<i class=\"fas\"></i> smoking-ban\";s:10:\"fas fa-sms\";s:31:\"<i class=\"fas\"></i> sms\";s:19:\"fas fa-snowboarding\";s:40:\"<i class=\"fas\"></i> snowboarding\";s:16:\"fas fa-snowflake\";s:37:\"<i class=\"fas\"></i> snowflake\";s:14:\"fas fa-snowman\";s:35:\"<i class=\"fas\"></i> snowman\";s:15:\"fas fa-snowplow\";s:36:\"<i class=\"fas\"></i> snowplow\";s:11:\"fas fa-soap\";s:32:\"<i class=\"fas\"></i> soap\";s:12:\"fas fa-socks\";s:33:\"<i class=\"fas\"></i> socks\";s:18:\"fas fa-solar-panel\";s:39:\"<i class=\"fas\"></i> solar-panel\";s:11:\"fas fa-sort\";s:32:\"<i class=\"fas\"></i> sort\";s:22:\"fas fa-sort-alpha-down\";s:43:\"<i class=\"fas\"></i> sort-alpha-down\";s:26:\"fas fa-sort-alpha-down-alt\";s:47:\"<i class=\"fas\"></i> sort-alpha-down-alt\";s:20:\"fas fa-sort-alpha-up\";s:41:\"<i class=\"fas\"></i> sort-alpha-up\";s:24:\"fas fa-sort-alpha-up-alt\";s:45:\"<i class=\"fas\"></i> sort-alpha-up-alt\";s:23:\"fas fa-sort-amount-down\";s:44:\"<i class=\"fas\"></i> sort-amount-down\";s:27:\"fas fa-sort-amount-down-alt\";s:48:\"<i class=\"fas\"></i> sort-amount-down-alt\";s:21:\"fas fa-sort-amount-up\";s:42:\"<i class=\"fas\"></i> sort-amount-up\";s:25:\"fas fa-sort-amount-up-alt\";s:46:\"<i class=\"fas\"></i> sort-amount-up-alt\";s:16:\"fas fa-sort-down\";s:37:\"<i class=\"fas\"></i> sort-down\";s:24:\"fas fa-sort-numeric-down\";s:45:\"<i class=\"fas\"></i> sort-numeric-down\";s:28:\"fas fa-sort-numeric-down-alt\";s:49:\"<i class=\"fas\"></i> sort-numeric-down-alt\";s:22:\"fas fa-sort-numeric-up\";s:43:\"<i class=\"fas\"></i> sort-numeric-up\";s:26:\"fas fa-sort-numeric-up-alt\";s:47:\"<i class=\"fas\"></i> sort-numeric-up-alt\";s:14:\"fas fa-sort-up\";s:35:\"<i class=\"fas\"></i> sort-up\";s:10:\"fas fa-spa\";s:31:\"<i class=\"fas\"></i> spa\";s:20:\"fas fa-space-shuttle\";s:41:\"<i class=\"fas\"></i> space-shuttle\";s:18:\"fas fa-spell-check\";s:39:\"<i class=\"fas\"></i> spell-check\";s:13:\"fas fa-spider\";s:34:\"<i class=\"fas\"></i> spider\";s:14:\"fas fa-spinner\";s:35:\"<i class=\"fas\"></i> spinner\";s:14:\"fas fa-splotch\";s:35:\"<i class=\"fas\"></i> splotch\";s:16:\"fas fa-spray-can\";s:37:\"<i class=\"fas\"></i> spray-can\";s:13:\"fas fa-square\";s:34:\"<i class=\"fas\"></i> square\";s:18:\"fas fa-square-full\";s:39:\"<i class=\"fas\"></i> square-full\";s:22:\"fas fa-square-root-alt\";s:43:\"<i class=\"fas\"></i> square-root-alt\";s:12:\"fas fa-stamp\";s:33:\"<i class=\"fas\"></i> stamp\";s:11:\"fas fa-star\";s:32:\"<i class=\"fas\"></i> star\";s:24:\"fas fa-star-and-crescent\";s:45:\"<i class=\"fas\"></i> star-and-crescent\";s:16:\"fas fa-star-half\";s:37:\"<i class=\"fas\"></i> star-half\";s:20:\"fas fa-star-half-alt\";s:41:\"<i class=\"fas\"></i> star-half-alt\";s:20:\"fas fa-star-of-david\";s:41:\"<i class=\"fas\"></i> star-of-david\";s:19:\"fas fa-star-of-life\";s:40:\"<i class=\"fas\"></i> star-of-life\";s:20:\"fas fa-step-backward\";s:41:\"<i class=\"fas\"></i> step-backward\";s:19:\"fas fa-step-forward\";s:40:\"<i class=\"fas\"></i> step-forward\";s:18:\"fas fa-stethoscope\";s:39:\"<i class=\"fas\"></i> stethoscope\";s:18:\"fas fa-sticky-note\";s:39:\"<i class=\"fas\"></i> sticky-note\";s:11:\"fas fa-stop\";s:32:\"<i class=\"fas\"></i> stop\";s:18:\"fas fa-stop-circle\";s:39:\"<i class=\"fas\"></i> stop-circle\";s:16:\"fas fa-stopwatch\";s:37:\"<i class=\"fas\"></i> stopwatch\";s:19:\"fas fa-stopwatch-20\";s:40:\"<i class=\"fas\"></i> stopwatch-20\";s:12:\"fas fa-store\";s:33:\"<i class=\"fas\"></i> store\";s:16:\"fas fa-store-alt\";s:37:\"<i class=\"fas\"></i> store-alt\";s:22:\"fas fa-store-alt-slash\";s:43:\"<i class=\"fas\"></i> store-alt-slash\";s:18:\"fas fa-store-slash\";s:39:\"<i class=\"fas\"></i> store-slash\";s:13:\"fas fa-stream\";s:34:\"<i class=\"fas\"></i> stream\";s:18:\"fas fa-street-view\";s:39:\"<i class=\"fas\"></i> street-view\";s:20:\"fas fa-strikethrough\";s:41:\"<i class=\"fas\"></i> strikethrough\";s:18:\"fas fa-stroopwafel\";s:39:\"<i class=\"fas\"></i> stroopwafel\";s:16:\"fas fa-subscript\";s:37:\"<i class=\"fas\"></i> subscript\";s:13:\"fas fa-subway\";s:34:\"<i class=\"fas\"></i> subway\";s:15:\"fas fa-suitcase\";s:36:\"<i class=\"fas\"></i> suitcase\";s:23:\"fas fa-suitcase-rolling\";s:44:\"<i class=\"fas\"></i> suitcase-rolling\";s:10:\"fas fa-sun\";s:31:\"<i class=\"fas\"></i> sun\";s:18:\"fas fa-superscript\";s:39:\"<i class=\"fas\"></i> superscript\";s:15:\"fas fa-surprise\";s:36:\"<i class=\"fas\"></i> surprise\";s:17:\"fas fa-swatchbook\";s:38:\"<i class=\"fas\"></i> swatchbook\";s:14:\"fas fa-swimmer\";s:35:\"<i class=\"fas\"></i> swimmer\";s:20:\"fas fa-swimming-pool\";s:41:\"<i class=\"fas\"></i> swimming-pool\";s:16:\"fas fa-synagogue\";s:37:\"<i class=\"fas\"></i> synagogue\";s:11:\"fas fa-sync\";s:32:\"<i class=\"fas\"></i> sync\";s:15:\"fas fa-sync-alt\";s:36:\"<i class=\"fas\"></i> sync-alt\";s:14:\"fas fa-syringe\";s:35:\"<i class=\"fas\"></i> syringe\";s:12:\"fas fa-table\";s:33:\"<i class=\"fas\"></i> table\";s:19:\"fas fa-table-tennis\";s:40:\"<i class=\"fas\"></i> table-tennis\";s:13:\"fas fa-tablet\";s:34:\"<i class=\"fas\"></i> tablet\";s:17:\"fas fa-tablet-alt\";s:38:\"<i class=\"fas\"></i> tablet-alt\";s:14:\"fas fa-tablets\";s:35:\"<i class=\"fas\"></i> tablets\";s:21:\"fas fa-tachometer-alt\";s:42:\"<i class=\"fas\"></i> tachometer-alt\";s:10:\"fas fa-tag\";s:31:\"<i class=\"fas\"></i> tag\";s:11:\"fas fa-tags\";s:32:\"<i class=\"fas\"></i> tags\";s:11:\"fas fa-tape\";s:32:\"<i class=\"fas\"></i> tape\";s:12:\"fas fa-tasks\";s:33:\"<i class=\"fas\"></i> tasks\";s:11:\"fas fa-taxi\";s:32:\"<i class=\"fas\"></i> taxi\";s:12:\"fas fa-teeth\";s:33:\"<i class=\"fas\"></i> teeth\";s:17:\"fas fa-teeth-open\";s:38:\"<i class=\"fas\"></i> teeth-open\";s:23:\"fas fa-temperature-high\";s:44:\"<i class=\"fas\"></i> temperature-high\";s:22:\"fas fa-temperature-low\";s:43:\"<i class=\"fas\"></i> temperature-low\";s:12:\"fas fa-tenge\";s:33:\"<i class=\"fas\"></i> tenge\";s:15:\"fas fa-terminal\";s:36:\"<i class=\"fas\"></i> terminal\";s:18:\"fas fa-text-height\";s:39:\"<i class=\"fas\"></i> text-height\";s:17:\"fas fa-text-width\";s:38:\"<i class=\"fas\"></i> text-width\";s:9:\"fas fa-th\";s:30:\"<i class=\"fas\"></i> th\";s:15:\"fas fa-th-large\";s:36:\"<i class=\"fas\"></i> th-large\";s:14:\"fas fa-th-list\";s:35:\"<i class=\"fas\"></i> th-list\";s:20:\"fas fa-theater-masks\";s:41:\"<i class=\"fas\"></i> theater-masks\";s:18:\"fas fa-thermometer\";s:39:\"<i class=\"fas\"></i> thermometer\";s:24:\"fas fa-thermometer-empty\";s:45:\"<i class=\"fas\"></i> thermometer-empty\";s:23:\"fas fa-thermometer-full\";s:44:\"<i class=\"fas\"></i> thermometer-full\";s:23:\"fas fa-thermometer-half\";s:44:\"<i class=\"fas\"></i> thermometer-half\";s:26:\"fas fa-thermometer-quarter\";s:47:\"<i class=\"fas\"></i> thermometer-quarter\";s:33:\"fas fa-thermometer-three-quarters\";s:54:\"<i class=\"fas\"></i> thermometer-three-quarters\";s:18:\"fas fa-thumbs-down\";s:39:\"<i class=\"fas\"></i> thumbs-down\";s:16:\"fas fa-thumbs-up\";s:37:\"<i class=\"fas\"></i> thumbs-up\";s:16:\"fas fa-thumbtack\";s:37:\"<i class=\"fas\"></i> thumbtack\";s:17:\"fas fa-ticket-alt\";s:38:\"<i class=\"fas\"></i> ticket-alt\";s:12:\"fas fa-times\";s:33:\"<i class=\"fas\"></i> times\";s:19:\"fas fa-times-circle\";s:40:\"<i class=\"fas\"></i> times-circle\";s:11:\"fas fa-tint\";s:32:\"<i class=\"fas\"></i> tint\";s:17:\"fas fa-tint-slash\";s:38:\"<i class=\"fas\"></i> tint-slash\";s:12:\"fas fa-tired\";s:33:\"<i class=\"fas\"></i> tired\";s:17:\"fas fa-toggle-off\";s:38:\"<i class=\"fas\"></i> toggle-off\";s:16:\"fas fa-toggle-on\";s:37:\"<i class=\"fas\"></i> toggle-on\";s:13:\"fas fa-toilet\";s:34:\"<i class=\"fas\"></i> toilet\";s:19:\"fas fa-toilet-paper\";s:40:\"<i class=\"fas\"></i> toilet-paper\";s:25:\"fas fa-toilet-paper-slash\";s:46:\"<i class=\"fas\"></i> toilet-paper-slash\";s:14:\"fas fa-toolbox\";s:35:\"<i class=\"fas\"></i> toolbox\";s:12:\"fas fa-tools\";s:33:\"<i class=\"fas\"></i> tools\";s:12:\"fas fa-tooth\";s:33:\"<i class=\"fas\"></i> tooth\";s:12:\"fas fa-torah\";s:33:\"<i class=\"fas\"></i> torah\";s:17:\"fas fa-torii-gate\";s:38:\"<i class=\"fas\"></i> torii-gate\";s:14:\"fas fa-tractor\";s:35:\"<i class=\"fas\"></i> tractor\";s:16:\"fas fa-trademark\";s:37:\"<i class=\"fas\"></i> trademark\";s:20:\"fas fa-traffic-light\";s:41:\"<i class=\"fas\"></i> traffic-light\";s:14:\"fas fa-trailer\";s:35:\"<i class=\"fas\"></i> trailer\";s:12:\"fas fa-train\";s:33:\"<i class=\"fas\"></i> train\";s:11:\"fas fa-tram\";s:32:\"<i class=\"fas\"></i> tram\";s:18:\"fas fa-transgender\";s:39:\"<i class=\"fas\"></i> transgender\";s:22:\"fas fa-transgender-alt\";s:43:\"<i class=\"fas\"></i> transgender-alt\";s:12:\"fas fa-trash\";s:33:\"<i class=\"fas\"></i> trash\";s:16:\"fas fa-trash-alt\";s:37:\"<i class=\"fas\"></i> trash-alt\";s:20:\"fas fa-trash-restore\";s:41:\"<i class=\"fas\"></i> trash-restore\";s:24:\"fas fa-trash-restore-alt\";s:45:\"<i class=\"fas\"></i> trash-restore-alt\";s:11:\"fas fa-tree\";s:32:\"<i class=\"fas\"></i> tree\";s:13:\"fas fa-trophy\";s:34:\"<i class=\"fas\"></i> trophy\";s:12:\"fas fa-truck\";s:33:\"<i class=\"fas\"></i> truck\";s:20:\"fas fa-truck-loading\";s:41:\"<i class=\"fas\"></i> truck-loading\";s:20:\"fas fa-truck-monster\";s:41:\"<i class=\"fas\"></i> truck-monster\";s:19:\"fas fa-truck-moving\";s:40:\"<i class=\"fas\"></i> truck-moving\";s:19:\"fas fa-truck-pickup\";s:40:\"<i class=\"fas\"></i> truck-pickup\";s:13:\"fas fa-tshirt\";s:34:\"<i class=\"fas\"></i> tshirt\";s:10:\"fas fa-tty\";s:31:\"<i class=\"fas\"></i> tty\";s:9:\"fas fa-tv\";s:30:\"<i class=\"fas\"></i> tv\";s:15:\"fas fa-umbrella\";s:36:\"<i class=\"fas\"></i> umbrella\";s:21:\"fas fa-umbrella-beach\";s:42:\"<i class=\"fas\"></i> umbrella-beach\";s:16:\"fas fa-underline\";s:37:\"<i class=\"fas\"></i> underline\";s:11:\"fas fa-undo\";s:32:\"<i class=\"fas\"></i> undo\";s:15:\"fas fa-undo-alt\";s:36:\"<i class=\"fas\"></i> undo-alt\";s:23:\"fas fa-universal-access\";s:44:\"<i class=\"fas\"></i> universal-access\";s:17:\"fas fa-university\";s:38:\"<i class=\"fas\"></i> university\";s:13:\"fas fa-unlink\";s:34:\"<i class=\"fas\"></i> unlink\";s:13:\"fas fa-unlock\";s:34:\"<i class=\"fas\"></i> unlock\";s:17:\"fas fa-unlock-alt\";s:38:\"<i class=\"fas\"></i> unlock-alt\";s:13:\"fas fa-upload\";s:34:\"<i class=\"fas\"></i> upload\";s:11:\"fas fa-user\";s:32:\"<i class=\"fas\"></i> user\";s:15:\"fas fa-user-alt\";s:36:\"<i class=\"fas\"></i> user-alt\";s:21:\"fas fa-user-alt-slash\";s:42:\"<i class=\"fas\"></i> user-alt-slash\";s:21:\"fas fa-user-astronaut\";s:42:\"<i class=\"fas\"></i> user-astronaut\";s:17:\"fas fa-user-check\";s:38:\"<i class=\"fas\"></i> user-check\";s:18:\"fas fa-user-circle\";s:39:\"<i class=\"fas\"></i> user-circle\";s:17:\"fas fa-user-clock\";s:38:\"<i class=\"fas\"></i> user-clock\";s:15:\"fas fa-user-cog\";s:36:\"<i class=\"fas\"></i> user-cog\";s:16:\"fas fa-user-edit\";s:37:\"<i class=\"fas\"></i> user-edit\";s:19:\"fas fa-user-friends\";s:40:\"<i class=\"fas\"></i> user-friends\";s:20:\"fas fa-user-graduate\";s:41:\"<i class=\"fas\"></i> user-graduate\";s:19:\"fas fa-user-injured\";s:40:\"<i class=\"fas\"></i> user-injured\";s:16:\"fas fa-user-lock\";s:37:\"<i class=\"fas\"></i> user-lock\";s:14:\"fas fa-user-md\";s:35:\"<i class=\"fas\"></i> user-md\";s:17:\"fas fa-user-minus\";s:38:\"<i class=\"fas\"></i> user-minus\";s:17:\"fas fa-user-ninja\";s:38:\"<i class=\"fas\"></i> user-ninja\";s:17:\"fas fa-user-nurse\";s:38:\"<i class=\"fas\"></i> user-nurse\";s:16:\"fas fa-user-plus\";s:37:\"<i class=\"fas\"></i> user-plus\";s:18:\"fas fa-user-secret\";s:39:\"<i class=\"fas\"></i> user-secret\";s:18:\"fas fa-user-shield\";s:39:\"<i class=\"fas\"></i> user-shield\";s:17:\"fas fa-user-slash\";s:38:\"<i class=\"fas\"></i> user-slash\";s:15:\"fas fa-user-tag\";s:36:\"<i class=\"fas\"></i> user-tag\";s:15:\"fas fa-user-tie\";s:36:\"<i class=\"fas\"></i> user-tie\";s:17:\"fas fa-user-times\";s:38:\"<i class=\"fas\"></i> user-times\";s:12:\"fas fa-users\";s:33:\"<i class=\"fas\"></i> users\";s:16:\"fas fa-users-cog\";s:37:\"<i class=\"fas\"></i> users-cog\";s:18:\"fas fa-users-slash\";s:39:\"<i class=\"fas\"></i> users-slash\";s:20:\"fas fa-utensil-spoon\";s:41:\"<i class=\"fas\"></i> utensil-spoon\";s:15:\"fas fa-utensils\";s:36:\"<i class=\"fas\"></i> utensils\";s:20:\"fas fa-vector-square\";s:41:\"<i class=\"fas\"></i> vector-square\";s:12:\"fas fa-venus\";s:33:\"<i class=\"fas\"></i> venus\";s:19:\"fas fa-venus-double\";s:40:\"<i class=\"fas\"></i> venus-double\";s:17:\"fas fa-venus-mars\";s:38:\"<i class=\"fas\"></i> venus-mars\";s:11:\"fas fa-vest\";s:32:\"<i class=\"fas\"></i> vest\";s:19:\"fas fa-vest-patches\";s:40:\"<i class=\"fas\"></i> vest-patches\";s:11:\"fas fa-vial\";s:32:\"<i class=\"fas\"></i> vial\";s:12:\"fas fa-vials\";s:33:\"<i class=\"fas\"></i> vials\";s:12:\"fas fa-video\";s:33:\"<i class=\"fas\"></i> video\";s:18:\"fas fa-video-slash\";s:39:\"<i class=\"fas\"></i> video-slash\";s:13:\"fas fa-vihara\";s:34:\"<i class=\"fas\"></i> vihara\";s:12:\"fas fa-virus\";s:33:\"<i class=\"fas\"></i> virus\";s:18:\"fas fa-virus-slash\";s:39:\"<i class=\"fas\"></i> virus-slash\";s:14:\"fas fa-viruses\";s:35:\"<i class=\"fas\"></i> viruses\";s:16:\"fas fa-voicemail\";s:37:\"<i class=\"fas\"></i> voicemail\";s:22:\"fas fa-volleyball-ball\";s:43:\"<i class=\"fas\"></i> volleyball-ball\";s:18:\"fas fa-volume-down\";s:39:\"<i class=\"fas\"></i> volume-down\";s:18:\"fas fa-volume-mute\";s:39:\"<i class=\"fas\"></i> volume-mute\";s:17:\"fas fa-volume-off\";s:38:\"<i class=\"fas\"></i> volume-off\";s:16:\"fas fa-volume-up\";s:37:\"<i class=\"fas\"></i> volume-up\";s:15:\"fas fa-vote-yea\";s:36:\"<i class=\"fas\"></i> vote-yea\";s:19:\"fas fa-vr-cardboard\";s:40:\"<i class=\"fas\"></i> vr-cardboard\";s:14:\"fas fa-walking\";s:35:\"<i class=\"fas\"></i> walking\";s:13:\"fas fa-wallet\";s:34:\"<i class=\"fas\"></i> wallet\";s:16:\"fas fa-warehouse\";s:37:\"<i class=\"fas\"></i> warehouse\";s:12:\"fas fa-water\";s:33:\"<i class=\"fas\"></i> water\";s:18:\"fas fa-wave-square\";s:39:\"<i class=\"fas\"></i> wave-square\";s:13:\"fas fa-weight\";s:34:\"<i class=\"fas\"></i> weight\";s:21:\"fas fa-weight-hanging\";s:42:\"<i class=\"fas\"></i> weight-hanging\";s:17:\"fas fa-wheelchair\";s:38:\"<i class=\"fas\"></i> wheelchair\";s:11:\"fas fa-wifi\";s:32:\"<i class=\"fas\"></i> wifi\";s:11:\"fas fa-wind\";s:32:\"<i class=\"fas\"></i> wind\";s:19:\"fas fa-window-close\";s:40:\"<i class=\"fas\"></i> window-close\";s:22:\"fas fa-window-maximize\";s:43:\"<i class=\"fas\"></i> window-maximize\";s:22:\"fas fa-window-minimize\";s:43:\"<i class=\"fas\"></i> window-minimize\";s:21:\"fas fa-window-restore\";s:42:\"<i class=\"fas\"></i> window-restore\";s:18:\"fas fa-wine-bottle\";s:39:\"<i class=\"fas\"></i> wine-bottle\";s:17:\"fas fa-wine-glass\";s:38:\"<i class=\"fas\"></i> wine-glass\";s:21:\"fas fa-wine-glass-alt\";s:42:\"<i class=\"fas\"></i> wine-glass-alt\";s:15:\"fas fa-won-sign\";s:36:\"<i class=\"fas\"></i> won-sign\";s:13:\"fas fa-wrench\";s:34:\"<i class=\"fas\"></i> wrench\";s:12:\"fas fa-x-ray\";s:33:\"<i class=\"fas\"></i> x-ray\";s:15:\"fas fa-yen-sign\";s:36:\"<i class=\"fas\"></i> yen-sign\";s:15:\"fas fa-yin-yang\";s:36:\"<i class=\"fas\"></i> yin-yang\";}s:3:\"far\";a:152:{s:19:\"far fa-address-book\";s:40:\"<i class=\"far\"></i> address-book\";s:19:\"far fa-address-card\";s:40:\"<i class=\"far\"></i> address-card\";s:12:\"far fa-angry\";s:33:\"<i class=\"far\"></i> angry\";s:28:\"far fa-arrow-alt-circle-down\";s:49:\"<i class=\"far\"></i> arrow-alt-circle-down\";s:28:\"far fa-arrow-alt-circle-left\";s:49:\"<i class=\"far\"></i> arrow-alt-circle-left\";s:29:\"far fa-arrow-alt-circle-right\";s:50:\"<i class=\"far\"></i> arrow-alt-circle-right\";s:26:\"far fa-arrow-alt-circle-up\";s:47:\"<i class=\"far\"></i> arrow-alt-circle-up\";s:11:\"far fa-bell\";s:32:\"<i class=\"far\"></i> bell\";s:17:\"far fa-bell-slash\";s:38:\"<i class=\"far\"></i> bell-slash\";s:15:\"far fa-bookmark\";s:36:\"<i class=\"far\"></i> bookmark\";s:15:\"far fa-building\";s:36:\"<i class=\"far\"></i> building\";s:15:\"far fa-calendar\";s:36:\"<i class=\"far\"></i> calendar\";s:19:\"far fa-calendar-alt\";s:40:\"<i class=\"far\"></i> calendar-alt\";s:21:\"far fa-calendar-check\";s:42:\"<i class=\"far\"></i> calendar-check\";s:21:\"far fa-calendar-minus\";s:42:\"<i class=\"far\"></i> calendar-minus\";s:20:\"far fa-calendar-plus\";s:41:\"<i class=\"far\"></i> calendar-plus\";s:21:\"far fa-calendar-times\";s:42:\"<i class=\"far\"></i> calendar-times\";s:24:\"far fa-caret-square-down\";s:45:\"<i class=\"far\"></i> caret-square-down\";s:24:\"far fa-caret-square-left\";s:45:\"<i class=\"far\"></i> caret-square-left\";s:25:\"far fa-caret-square-right\";s:46:\"<i class=\"far\"></i> caret-square-right\";s:22:\"far fa-caret-square-up\";s:43:\"<i class=\"far\"></i> caret-square-up\";s:16:\"far fa-chart-bar\";s:37:\"<i class=\"far\"></i> chart-bar\";s:19:\"far fa-check-circle\";s:40:\"<i class=\"far\"></i> check-circle\";s:19:\"far fa-check-square\";s:40:\"<i class=\"far\"></i> check-square\";s:13:\"far fa-circle\";s:34:\"<i class=\"far\"></i> circle\";s:16:\"far fa-clipboard\";s:37:\"<i class=\"far\"></i> clipboard\";s:12:\"far fa-clock\";s:33:\"<i class=\"far\"></i> clock\";s:12:\"far fa-clone\";s:33:\"<i class=\"far\"></i> clone\";s:24:\"far fa-closed-captioning\";s:45:\"<i class=\"far\"></i> closed-captioning\";s:14:\"far fa-comment\";s:35:\"<i class=\"far\"></i> comment\";s:18:\"far fa-comment-alt\";s:39:\"<i class=\"far\"></i> comment-alt\";s:19:\"far fa-comment-dots\";s:40:\"<i class=\"far\"></i> comment-dots\";s:15:\"far fa-comments\";s:36:\"<i class=\"far\"></i> comments\";s:14:\"far fa-compass\";s:35:\"<i class=\"far\"></i> compass\";s:11:\"far fa-copy\";s:32:\"<i class=\"far\"></i> copy\";s:16:\"far fa-copyright\";s:37:\"<i class=\"far\"></i> copyright\";s:18:\"far fa-credit-card\";s:39:\"<i class=\"far\"></i> credit-card\";s:12:\"far fa-dizzy\";s:33:\"<i class=\"far\"></i> dizzy\";s:17:\"far fa-dot-circle\";s:38:\"<i class=\"far\"></i> dot-circle\";s:11:\"far fa-edit\";s:32:\"<i class=\"far\"></i> edit\";s:15:\"far fa-envelope\";s:36:\"<i class=\"far\"></i> envelope\";s:20:\"far fa-envelope-open\";s:41:\"<i class=\"far\"></i> envelope-open\";s:10:\"far fa-eye\";s:31:\"<i class=\"far\"></i> eye\";s:16:\"far fa-eye-slash\";s:37:\"<i class=\"far\"></i> eye-slash\";s:11:\"far fa-file\";s:32:\"<i class=\"far\"></i> file\";s:15:\"far fa-file-alt\";s:36:\"<i class=\"far\"></i> file-alt\";s:19:\"far fa-file-archive\";s:40:\"<i class=\"far\"></i> file-archive\";s:17:\"far fa-file-audio\";s:38:\"<i class=\"far\"></i> file-audio\";s:16:\"far fa-file-code\";s:37:\"<i class=\"far\"></i> file-code\";s:17:\"far fa-file-excel\";s:38:\"<i class=\"far\"></i> file-excel\";s:17:\"far fa-file-image\";s:38:\"<i class=\"far\"></i> file-image\";s:15:\"far fa-file-pdf\";s:36:\"<i class=\"far\"></i> file-pdf\";s:22:\"far fa-file-powerpoint\";s:43:\"<i class=\"far\"></i> file-powerpoint\";s:17:\"far fa-file-video\";s:38:\"<i class=\"far\"></i> file-video\";s:16:\"far fa-file-word\";s:37:\"<i class=\"far\"></i> file-word\";s:11:\"far fa-flag\";s:32:\"<i class=\"far\"></i> flag\";s:14:\"far fa-flushed\";s:35:\"<i class=\"far\"></i> flushed\";s:13:\"far fa-folder\";s:34:\"<i class=\"far\"></i> folder\";s:18:\"far fa-folder-open\";s:39:\"<i class=\"far\"></i> folder-open\";s:29:\"far fa-font-awesome-logo-full\";s:50:\"<i class=\"far\"></i> font-awesome-logo-full\";s:12:\"far fa-frown\";s:33:\"<i class=\"far\"></i> frown\";s:17:\"far fa-frown-open\";s:38:\"<i class=\"far\"></i> frown-open\";s:13:\"far fa-futbol\";s:34:\"<i class=\"far\"></i> futbol\";s:10:\"far fa-gem\";s:31:\"<i class=\"far\"></i> gem\";s:14:\"far fa-grimace\";s:35:\"<i class=\"far\"></i> grimace\";s:11:\"far fa-grin\";s:32:\"<i class=\"far\"></i> grin\";s:15:\"far fa-grin-alt\";s:36:\"<i class=\"far\"></i> grin-alt\";s:16:\"far fa-grin-beam\";s:37:\"<i class=\"far\"></i> grin-beam\";s:22:\"far fa-grin-beam-sweat\";s:43:\"<i class=\"far\"></i> grin-beam-sweat\";s:18:\"far fa-grin-hearts\";s:39:\"<i class=\"far\"></i> grin-hearts\";s:18:\"far fa-grin-squint\";s:39:\"<i class=\"far\"></i> grin-squint\";s:24:\"far fa-grin-squint-tears\";s:45:\"<i class=\"far\"></i> grin-squint-tears\";s:17:\"far fa-grin-stars\";s:38:\"<i class=\"far\"></i> grin-stars\";s:17:\"far fa-grin-tears\";s:38:\"<i class=\"far\"></i> grin-tears\";s:18:\"far fa-grin-tongue\";s:39:\"<i class=\"far\"></i> grin-tongue\";s:25:\"far fa-grin-tongue-squint\";s:46:\"<i class=\"far\"></i> grin-tongue-squint\";s:23:\"far fa-grin-tongue-wink\";s:44:\"<i class=\"far\"></i> grin-tongue-wink\";s:16:\"far fa-grin-wink\";s:37:\"<i class=\"far\"></i> grin-wink\";s:18:\"far fa-hand-lizard\";s:39:\"<i class=\"far\"></i> hand-lizard\";s:17:\"far fa-hand-paper\";s:38:\"<i class=\"far\"></i> hand-paper\";s:17:\"far fa-hand-peace\";s:38:\"<i class=\"far\"></i> hand-peace\";s:22:\"far fa-hand-point-down\";s:43:\"<i class=\"far\"></i> hand-point-down\";s:22:\"far fa-hand-point-left\";s:43:\"<i class=\"far\"></i> hand-point-left\";s:23:\"far fa-hand-point-right\";s:44:\"<i class=\"far\"></i> hand-point-right\";s:20:\"far fa-hand-point-up\";s:41:\"<i class=\"far\"></i> hand-point-up\";s:19:\"far fa-hand-pointer\";s:40:\"<i class=\"far\"></i> hand-pointer\";s:16:\"far fa-hand-rock\";s:37:\"<i class=\"far\"></i> hand-rock\";s:20:\"far fa-hand-scissors\";s:41:\"<i class=\"far\"></i> hand-scissors\";s:17:\"far fa-hand-spock\";s:38:\"<i class=\"far\"></i> hand-spock\";s:16:\"far fa-handshake\";s:37:\"<i class=\"far\"></i> handshake\";s:10:\"far fa-hdd\";s:31:\"<i class=\"far\"></i> hdd\";s:12:\"far fa-heart\";s:33:\"<i class=\"far\"></i> heart\";s:15:\"far fa-hospital\";s:36:\"<i class=\"far\"></i> hospital\";s:16:\"far fa-hourglass\";s:37:\"<i class=\"far\"></i> hourglass\";s:15:\"far fa-id-badge\";s:36:\"<i class=\"far\"></i> id-badge\";s:14:\"far fa-id-card\";s:35:\"<i class=\"far\"></i> id-card\";s:12:\"far fa-image\";s:33:\"<i class=\"far\"></i> image\";s:13:\"far fa-images\";s:34:\"<i class=\"far\"></i> images\";s:15:\"far fa-keyboard\";s:36:\"<i class=\"far\"></i> keyboard\";s:11:\"far fa-kiss\";s:32:\"<i class=\"far\"></i> kiss\";s:16:\"far fa-kiss-beam\";s:37:\"<i class=\"far\"></i> kiss-beam\";s:22:\"far fa-kiss-wink-heart\";s:43:\"<i class=\"far\"></i> kiss-wink-heart\";s:12:\"far fa-laugh\";s:33:\"<i class=\"far\"></i> laugh\";s:17:\"far fa-laugh-beam\";s:38:\"<i class=\"far\"></i> laugh-beam\";s:19:\"far fa-laugh-squint\";s:40:\"<i class=\"far\"></i> laugh-squint\";s:17:\"far fa-laugh-wink\";s:38:\"<i class=\"far\"></i> laugh-wink\";s:12:\"far fa-lemon\";s:33:\"<i class=\"far\"></i> lemon\";s:16:\"far fa-life-ring\";s:37:\"<i class=\"far\"></i> life-ring\";s:16:\"far fa-lightbulb\";s:37:\"<i class=\"far\"></i> lightbulb\";s:15:\"far fa-list-alt\";s:36:\"<i class=\"far\"></i> list-alt\";s:10:\"far fa-map\";s:31:\"<i class=\"far\"></i> map\";s:10:\"far fa-meh\";s:31:\"<i class=\"far\"></i> meh\";s:16:\"far fa-meh-blank\";s:37:\"<i class=\"far\"></i> meh-blank\";s:23:\"far fa-meh-rolling-eyes\";s:44:\"<i class=\"far\"></i> meh-rolling-eyes\";s:19:\"far fa-minus-square\";s:40:\"<i class=\"far\"></i> minus-square\";s:21:\"far fa-money-bill-alt\";s:42:\"<i class=\"far\"></i> money-bill-alt\";s:11:\"far fa-moon\";s:32:\"<i class=\"far\"></i> moon\";s:16:\"far fa-newspaper\";s:37:\"<i class=\"far\"></i> newspaper\";s:19:\"far fa-object-group\";s:40:\"<i class=\"far\"></i> object-group\";s:21:\"far fa-object-ungroup\";s:42:\"<i class=\"far\"></i> object-ungroup\";s:18:\"far fa-paper-plane\";s:39:\"<i class=\"far\"></i> paper-plane\";s:19:\"far fa-pause-circle\";s:40:\"<i class=\"far\"></i> pause-circle\";s:18:\"far fa-play-circle\";s:39:\"<i class=\"far\"></i> play-circle\";s:18:\"far fa-plus-square\";s:39:\"<i class=\"far\"></i> plus-square\";s:22:\"far fa-question-circle\";s:43:\"<i class=\"far\"></i> question-circle\";s:17:\"far fa-registered\";s:38:\"<i class=\"far\"></i> registered\";s:14:\"far fa-sad-cry\";s:35:\"<i class=\"far\"></i> sad-cry\";s:15:\"far fa-sad-tear\";s:36:\"<i class=\"far\"></i> sad-tear\";s:11:\"far fa-save\";s:32:\"<i class=\"far\"></i> save\";s:19:\"far fa-share-square\";s:40:\"<i class=\"far\"></i> share-square\";s:12:\"far fa-smile\";s:33:\"<i class=\"far\"></i> smile\";s:17:\"far fa-smile-beam\";s:38:\"<i class=\"far\"></i> smile-beam\";s:17:\"far fa-smile-wink\";s:38:\"<i class=\"far\"></i> smile-wink\";s:16:\"far fa-snowflake\";s:37:\"<i class=\"far\"></i> snowflake\";s:13:\"far fa-square\";s:34:\"<i class=\"far\"></i> square\";s:11:\"far fa-star\";s:32:\"<i class=\"far\"></i> star\";s:16:\"far fa-star-half\";s:37:\"<i class=\"far\"></i> star-half\";s:18:\"far fa-sticky-note\";s:39:\"<i class=\"far\"></i> sticky-note\";s:18:\"far fa-stop-circle\";s:39:\"<i class=\"far\"></i> stop-circle\";s:10:\"far fa-sun\";s:31:\"<i class=\"far\"></i> sun\";s:15:\"far fa-surprise\";s:36:\"<i class=\"far\"></i> surprise\";s:18:\"far fa-thumbs-down\";s:39:\"<i class=\"far\"></i> thumbs-down\";s:16:\"far fa-thumbs-up\";s:37:\"<i class=\"far\"></i> thumbs-up\";s:19:\"far fa-times-circle\";s:40:\"<i class=\"far\"></i> times-circle\";s:12:\"far fa-tired\";s:33:\"<i class=\"far\"></i> tired\";s:16:\"far fa-trash-alt\";s:37:\"<i class=\"far\"></i> trash-alt\";s:11:\"far fa-user\";s:32:\"<i class=\"far\"></i> user\";s:18:\"far fa-user-circle\";s:39:\"<i class=\"far\"></i> user-circle\";s:19:\"far fa-window-close\";s:40:\"<i class=\"far\"></i> window-close\";s:22:\"far fa-window-maximize\";s:43:\"<i class=\"far\"></i> window-maximize\";s:22:\"far fa-window-minimize\";s:43:\"<i class=\"far\"></i> window-minimize\";s:21:\"far fa-window-restore\";s:42:\"<i class=\"far\"></i> window-restore\";}}s:7:\"details\";a:3:{s:3:\"fab\";a:457:{s:12:\"fab fa-500px\";a:2:{s:3:\"hex\";s:5:\"\\f26e\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-accessible-icon\";a:2:{s:3:\"hex\";s:5:\"\\f368\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-accusoft\";a:2:{s:3:\"hex\";s:5:\"\\f369\";s:7:\"unicode\";s:8:\"\";}s:32:\"fab fa-acquisitions-incorporated\";a:2:{s:3:\"hex\";s:5:\"\\f6af\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-adn\";a:2:{s:3:\"hex\";s:5:\"\\f170\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-adversal\";a:2:{s:3:\"hex\";s:5:\"\\f36a\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-affiliatetheme\";a:2:{s:3:\"hex\";s:5:\"\\f36b\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-airbnb\";a:2:{s:3:\"hex\";s:5:\"\\f834\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-algolia\";a:2:{s:3:\"hex\";s:5:\"\\f36c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-alipay\";a:2:{s:3:\"hex\";s:5:\"\\f642\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-amazon\";a:2:{s:3:\"hex\";s:5:\"\\f270\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-amazon-pay\";a:2:{s:3:\"hex\";s:5:\"\\f42c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-amilia\";a:2:{s:3:\"hex\";s:5:\"\\f36d\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-android\";a:2:{s:3:\"hex\";s:5:\"\\f17b\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-angellist\";a:2:{s:3:\"hex\";s:5:\"\\f209\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-angrycreative\";a:2:{s:3:\"hex\";s:5:\"\\f36e\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-angular\";a:2:{s:3:\"hex\";s:5:\"\\f420\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-app-store\";a:2:{s:3:\"hex\";s:5:\"\\f36f\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-app-store-ios\";a:2:{s:3:\"hex\";s:5:\"\\f370\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-apper\";a:2:{s:3:\"hex\";s:5:\"\\f371\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-apple\";a:2:{s:3:\"hex\";s:5:\"\\f179\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-apple-pay\";a:2:{s:3:\"hex\";s:5:\"\\f415\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-artstation\";a:2:{s:3:\"hex\";s:5:\"\\f77a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-asymmetrik\";a:2:{s:3:\"hex\";s:5:\"\\f372\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-atlassian\";a:2:{s:3:\"hex\";s:5:\"\\f77b\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-audible\";a:2:{s:3:\"hex\";s:5:\"\\f373\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-autoprefixer\";a:2:{s:3:\"hex\";s:5:\"\\f41c\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-avianex\";a:2:{s:3:\"hex\";s:5:\"\\f374\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-aviato\";a:2:{s:3:\"hex\";s:5:\"\\f421\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-aws\";a:2:{s:3:\"hex\";s:5:\"\\f375\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-bandcamp\";a:2:{s:3:\"hex\";s:5:\"\\f2d5\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-battle-net\";a:2:{s:3:\"hex\";s:5:\"\\f835\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-behance\";a:2:{s:3:\"hex\";s:5:\"\\f1b4\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-behance-square\";a:2:{s:3:\"hex\";s:5:\"\\f1b5\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-bimobject\";a:2:{s:3:\"hex\";s:5:\"\\f378\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-bitbucket\";a:2:{s:3:\"hex\";s:5:\"\\f171\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-bitcoin\";a:2:{s:3:\"hex\";s:5:\"\\f379\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-bity\";a:2:{s:3:\"hex\";s:5:\"\\f37a\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-black-tie\";a:2:{s:3:\"hex\";s:5:\"\\f27e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-blackberry\";a:2:{s:3:\"hex\";s:5:\"\\f37b\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-blogger\";a:2:{s:3:\"hex\";s:5:\"\\f37c\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-blogger-b\";a:2:{s:3:\"hex\";s:5:\"\\f37d\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-bluetooth\";a:2:{s:3:\"hex\";s:5:\"\\f293\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-bluetooth-b\";a:2:{s:3:\"hex\";s:5:\"\\f294\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-bootstrap\";a:2:{s:3:\"hex\";s:5:\"\\f836\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-btc\";a:2:{s:3:\"hex\";s:5:\"\\f15a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-buffer\";a:2:{s:3:\"hex\";s:5:\"\\f837\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-buromobelexperte\";a:2:{s:3:\"hex\";s:5:\"\\f37f\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-buy-n-large\";a:2:{s:3:\"hex\";s:5:\"\\f8a6\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-buysellads\";a:2:{s:3:\"hex\";s:5:\"\\f20d\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-canadian-maple-leaf\";a:2:{s:3:\"hex\";s:5:\"\\f785\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-cc-amazon-pay\";a:2:{s:3:\"hex\";s:5:\"\\f42d\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-cc-amex\";a:2:{s:3:\"hex\";s:5:\"\\f1f3\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-cc-apple-pay\";a:2:{s:3:\"hex\";s:5:\"\\f416\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-cc-diners-club\";a:2:{s:3:\"hex\";s:5:\"\\f24c\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-cc-discover\";a:2:{s:3:\"hex\";s:5:\"\\f1f2\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-cc-jcb\";a:2:{s:3:\"hex\";s:5:\"\\f24b\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-cc-mastercard\";a:2:{s:3:\"hex\";s:5:\"\\f1f1\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-cc-paypal\";a:2:{s:3:\"hex\";s:5:\"\\f1f4\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-cc-stripe\";a:2:{s:3:\"hex\";s:5:\"\\f1f5\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-cc-visa\";a:2:{s:3:\"hex\";s:5:\"\\f1f0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-centercode\";a:2:{s:3:\"hex\";s:5:\"\\f380\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-centos\";a:2:{s:3:\"hex\";s:5:\"\\f789\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-chrome\";a:2:{s:3:\"hex\";s:5:\"\\f268\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-chromecast\";a:2:{s:3:\"hex\";s:5:\"\\f838\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-cloudflare\";a:2:{s:3:\"hex\";s:5:\"\\e07d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-cloudscale\";a:2:{s:3:\"hex\";s:5:\"\\f383\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-cloudsmith\";a:2:{s:3:\"hex\";s:5:\"\\f384\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-cloudversify\";a:2:{s:3:\"hex\";s:5:\"\\f385\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-codepen\";a:2:{s:3:\"hex\";s:5:\"\\f1cb\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-codiepie\";a:2:{s:3:\"hex\";s:5:\"\\f284\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-confluence\";a:2:{s:3:\"hex\";s:5:\"\\f78d\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-connectdevelop\";a:2:{s:3:\"hex\";s:5:\"\\f20e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-contao\";a:2:{s:3:\"hex\";s:5:\"\\f26d\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-cotton-bureau\";a:2:{s:3:\"hex\";s:5:\"\\f89e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-cpanel\";a:2:{s:3:\"hex\";s:5:\"\\f388\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-creative-commons\";a:2:{s:3:\"hex\";s:5:\"\\f25e\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-creative-commons-by\";a:2:{s:3:\"hex\";s:5:\"\\f4e7\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-creative-commons-nc\";a:2:{s:3:\"hex\";s:5:\"\\f4e8\";s:7:\"unicode\";s:8:\"\";}s:29:\"fab fa-creative-commons-nc-eu\";a:2:{s:3:\"hex\";s:5:\"\\f4e9\";s:7:\"unicode\";s:8:\"\";}s:29:\"fab fa-creative-commons-nc-jp\";a:2:{s:3:\"hex\";s:5:\"\\f4ea\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-creative-commons-nd\";a:2:{s:3:\"hex\";s:5:\"\\f4eb\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-creative-commons-pd\";a:2:{s:3:\"hex\";s:5:\"\\f4ec\";s:7:\"unicode\";s:8:\"\";}s:30:\"fab fa-creative-commons-pd-alt\";a:2:{s:3:\"hex\";s:5:\"\\f4ed\";s:7:\"unicode\";s:8:\"\";}s:29:\"fab fa-creative-commons-remix\";a:2:{s:3:\"hex\";s:5:\"\\f4ee\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-creative-commons-sa\";a:2:{s:3:\"hex\";s:5:\"\\f4ef\";s:7:\"unicode\";s:8:\"\";}s:32:\"fab fa-creative-commons-sampling\";a:2:{s:3:\"hex\";s:5:\"\\f4f0\";s:7:\"unicode\";s:8:\"\";}s:37:\"fab fa-creative-commons-sampling-plus\";a:2:{s:3:\"hex\";s:5:\"\\f4f1\";s:7:\"unicode\";s:8:\"\";}s:29:\"fab fa-creative-commons-share\";a:2:{s:3:\"hex\";s:5:\"\\f4f2\";s:7:\"unicode\";s:8:\"\";}s:28:\"fab fa-creative-commons-zero\";a:2:{s:3:\"hex\";s:5:\"\\f4f3\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-critical-role\";a:2:{s:3:\"hex\";s:5:\"\\f6c9\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-css3\";a:2:{s:3:\"hex\";s:5:\"\\f13c\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-css3-alt\";a:2:{s:3:\"hex\";s:5:\"\\f38b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-cuttlefish\";a:2:{s:3:\"hex\";s:5:\"\\f38c\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-d-and-d\";a:2:{s:3:\"hex\";s:5:\"\\f38d\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-d-and-d-beyond\";a:2:{s:3:\"hex\";s:5:\"\\f6ca\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-dailymotion\";a:2:{s:3:\"hex\";s:5:\"\\e052\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-dashcube\";a:2:{s:3:\"hex\";s:5:\"\\f210\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-deezer\";a:2:{s:3:\"hex\";s:5:\"\\e077\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-delicious\";a:2:{s:3:\"hex\";s:5:\"\\f1a5\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-deploydog\";a:2:{s:3:\"hex\";s:5:\"\\f38e\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-deskpro\";a:2:{s:3:\"hex\";s:5:\"\\f38f\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-dev\";a:2:{s:3:\"hex\";s:5:\"\\f6cc\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-deviantart\";a:2:{s:3:\"hex\";s:5:\"\\f1bd\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-dhl\";a:2:{s:3:\"hex\";s:5:\"\\f790\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-diaspora\";a:2:{s:3:\"hex\";s:5:\"\\f791\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-digg\";a:2:{s:3:\"hex\";s:5:\"\\f1a6\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-digital-ocean\";a:2:{s:3:\"hex\";s:5:\"\\f391\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-discord\";a:2:{s:3:\"hex\";s:5:\"\\f392\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-discourse\";a:2:{s:3:\"hex\";s:5:\"\\f393\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-dochub\";a:2:{s:3:\"hex\";s:5:\"\\f394\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-docker\";a:2:{s:3:\"hex\";s:5:\"\\f395\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-draft2digital\";a:2:{s:3:\"hex\";s:5:\"\\f396\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-dribbble\";a:2:{s:3:\"hex\";s:5:\"\\f17d\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-dribbble-square\";a:2:{s:3:\"hex\";s:5:\"\\f397\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-dropbox\";a:2:{s:3:\"hex\";s:5:\"\\f16b\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-drupal\";a:2:{s:3:\"hex\";s:5:\"\\f1a9\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-dyalog\";a:2:{s:3:\"hex\";s:5:\"\\f399\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-earlybirds\";a:2:{s:3:\"hex\";s:5:\"\\f39a\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-ebay\";a:2:{s:3:\"hex\";s:5:\"\\f4f4\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-edge\";a:2:{s:3:\"hex\";s:5:\"\\f282\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-edge-legacy\";a:2:{s:3:\"hex\";s:5:\"\\e078\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-elementor\";a:2:{s:3:\"hex\";s:5:\"\\f430\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-ello\";a:2:{s:3:\"hex\";s:5:\"\\f5f1\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-ember\";a:2:{s:3:\"hex\";s:5:\"\\f423\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-empire\";a:2:{s:3:\"hex\";s:5:\"\\f1d1\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-envira\";a:2:{s:3:\"hex\";s:5:\"\\f299\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-erlang\";a:2:{s:3:\"hex\";s:5:\"\\f39d\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-ethereum\";a:2:{s:3:\"hex\";s:5:\"\\f42e\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-etsy\";a:2:{s:3:\"hex\";s:5:\"\\f2d7\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-evernote\";a:2:{s:3:\"hex\";s:5:\"\\f839\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-expeditedssl\";a:2:{s:3:\"hex\";s:5:\"\\f23e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-facebook\";a:2:{s:3:\"hex\";s:5:\"\\f09a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-facebook-f\";a:2:{s:3:\"hex\";s:5:\"\\f39e\";s:7:\"unicode\";s:8:\"\";}s:25:\"fab fa-facebook-messenger\";a:2:{s:3:\"hex\";s:5:\"\\f39f\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-facebook-square\";a:2:{s:3:\"hex\";s:5:\"\\f082\";s:7:\"unicode\";s:8:\"\";}s:27:\"fab fa-fantasy-flight-games\";a:2:{s:3:\"hex\";s:5:\"\\f6dc\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-fedex\";a:2:{s:3:\"hex\";s:5:\"\\f797\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-fedora\";a:2:{s:3:\"hex\";s:5:\"\\f798\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-figma\";a:2:{s:3:\"hex\";s:5:\"\\f799\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-firefox\";a:2:{s:3:\"hex\";s:5:\"\\f269\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-firefox-browser\";a:2:{s:3:\"hex\";s:5:\"\\e007\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-first-order\";a:2:{s:3:\"hex\";s:5:\"\\f2b0\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-first-order-alt\";a:2:{s:3:\"hex\";s:5:\"\\f50a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-firstdraft\";a:2:{s:3:\"hex\";s:5:\"\\f3a1\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-flickr\";a:2:{s:3:\"hex\";s:5:\"\\f16e\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-flipboard\";a:2:{s:3:\"hex\";s:5:\"\\f44d\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-fly\";a:2:{s:3:\"hex\";s:5:\"\\f417\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-font-awesome\";a:2:{s:3:\"hex\";s:5:\"\\f2b4\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-font-awesome-alt\";a:2:{s:3:\"hex\";s:5:\"\\f35c\";s:7:\"unicode\";s:8:\"\";}s:24:\"fab fa-font-awesome-flag\";a:2:{s:3:\"hex\";s:5:\"\\f425\";s:7:\"unicode\";s:8:\"\";}s:29:\"fab fa-font-awesome-logo-full\";a:2:{s:3:\"hex\";s:5:\"\\f4e6\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-fonticons\";a:2:{s:3:\"hex\";s:5:\"\\f280\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-fonticons-fi\";a:2:{s:3:\"hex\";s:5:\"\\f3a2\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-fort-awesome\";a:2:{s:3:\"hex\";s:5:\"\\f286\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-fort-awesome-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3a3\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-forumbee\";a:2:{s:3:\"hex\";s:5:\"\\f211\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-foursquare\";a:2:{s:3:\"hex\";s:5:\"\\f180\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-free-code-camp\";a:2:{s:3:\"hex\";s:5:\"\\f2c5\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-freebsd\";a:2:{s:3:\"hex\";s:5:\"\\f3a4\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-fulcrum\";a:2:{s:3:\"hex\";s:5:\"\\f50b\";s:7:\"unicode\";s:8:\"\";}s:24:\"fab fa-galactic-republic\";a:2:{s:3:\"hex\";s:5:\"\\f50c\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-galactic-senate\";a:2:{s:3:\"hex\";s:5:\"\\f50d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-get-pocket\";a:2:{s:3:\"hex\";s:5:\"\\f265\";s:7:\"unicode\";s:8:\"\";}s:9:\"fab fa-gg\";a:2:{s:3:\"hex\";s:5:\"\\f260\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-gg-circle\";a:2:{s:3:\"hex\";s:5:\"\\f261\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-git\";a:2:{s:3:\"hex\";s:5:\"\\f1d3\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-git-alt\";a:2:{s:3:\"hex\";s:5:\"\\f841\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-git-square\";a:2:{s:3:\"hex\";s:5:\"\\f1d2\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-github\";a:2:{s:3:\"hex\";s:5:\"\\f09b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-github-alt\";a:2:{s:3:\"hex\";s:5:\"\\f113\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-github-square\";a:2:{s:3:\"hex\";s:5:\"\\f092\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-gitkraken\";a:2:{s:3:\"hex\";s:5:\"\\f3a6\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-gitlab\";a:2:{s:3:\"hex\";s:5:\"\\f296\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-gitter\";a:2:{s:3:\"hex\";s:5:\"\\f426\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-glide\";a:2:{s:3:\"hex\";s:5:\"\\f2a5\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-glide-g\";a:2:{s:3:\"hex\";s:5:\"\\f2a6\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-gofore\";a:2:{s:3:\"hex\";s:5:\"\\f3a7\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-goodreads\";a:2:{s:3:\"hex\";s:5:\"\\f3a8\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-goodreads-g\";a:2:{s:3:\"hex\";s:5:\"\\f3a9\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-google\";a:2:{s:3:\"hex\";s:5:\"\\f1a0\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-google-drive\";a:2:{s:3:\"hex\";s:5:\"\\f3aa\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-google-pay\";a:2:{s:3:\"hex\";s:5:\"\\e079\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-google-play\";a:2:{s:3:\"hex\";s:5:\"\\f3ab\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-google-plus\";a:2:{s:3:\"hex\";s:5:\"\\f2b3\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-google-plus-g\";a:2:{s:3:\"hex\";s:5:\"\\f0d5\";s:7:\"unicode\";s:8:\"\";}s:25:\"fab fa-google-plus-square\";a:2:{s:3:\"hex\";s:5:\"\\f0d4\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-google-wallet\";a:2:{s:3:\"hex\";s:5:\"\\f1ee\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-gratipay\";a:2:{s:3:\"hex\";s:5:\"\\f184\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-grav\";a:2:{s:3:\"hex\";s:5:\"\\f2d6\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-gripfire\";a:2:{s:3:\"hex\";s:5:\"\\f3ac\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-grunt\";a:2:{s:3:\"hex\";s:5:\"\\f3ad\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-guilded\";a:2:{s:3:\"hex\";s:5:\"\\e07e\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-gulp\";a:2:{s:3:\"hex\";s:5:\"\\f3ae\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-hacker-news\";a:2:{s:3:\"hex\";s:5:\"\\f1d4\";s:7:\"unicode\";s:8:\"\";}s:25:\"fab fa-hacker-news-square\";a:2:{s:3:\"hex\";s:5:\"\\f3af\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-hackerrank\";a:2:{s:3:\"hex\";s:5:\"\\f5f7\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-hips\";a:2:{s:3:\"hex\";s:5:\"\\f452\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-hire-a-helper\";a:2:{s:3:\"hex\";s:5:\"\\f3b0\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-hive\";a:2:{s:3:\"hex\";s:5:\"\\e07f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-hooli\";a:2:{s:3:\"hex\";s:5:\"\\f427\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-hornbill\";a:2:{s:3:\"hex\";s:5:\"\\f592\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-hotjar\";a:2:{s:3:\"hex\";s:5:\"\\f3b1\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-houzz\";a:2:{s:3:\"hex\";s:5:\"\\f27c\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-html5\";a:2:{s:3:\"hex\";s:5:\"\\f13b\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-hubspot\";a:2:{s:3:\"hex\";s:5:\"\\f3b2\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-ideal\";a:2:{s:3:\"hex\";s:5:\"\\e013\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-imdb\";a:2:{s:3:\"hex\";s:5:\"\\f2d8\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-innosoft\";a:2:{s:3:\"hex\";s:5:\"\\e080\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-instagram\";a:2:{s:3:\"hex\";s:5:\"\\f16d\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-instagram-square\";a:2:{s:3:\"hex\";s:5:\"\\e055\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-instalod\";a:2:{s:3:\"hex\";s:5:\"\\e081\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-intercom\";a:2:{s:3:\"hex\";s:5:\"\\f7af\";s:7:\"unicode\";s:8:\"\";}s:24:\"fab fa-internet-explorer\";a:2:{s:3:\"hex\";s:5:\"\\f26b\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-invision\";a:2:{s:3:\"hex\";s:5:\"\\f7b0\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-ioxhost\";a:2:{s:3:\"hex\";s:5:\"\\f208\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-itch-io\";a:2:{s:3:\"hex\";s:5:\"\\f83a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-itunes\";a:2:{s:3:\"hex\";s:5:\"\\f3b4\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-itunes-note\";a:2:{s:3:\"hex\";s:5:\"\\f3b5\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-java\";a:2:{s:3:\"hex\";s:5:\"\\f4e4\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-jedi-order\";a:2:{s:3:\"hex\";s:5:\"\\f50e\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-jenkins\";a:2:{s:3:\"hex\";s:5:\"\\f3b6\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-jira\";a:2:{s:3:\"hex\";s:5:\"\\f7b1\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-joget\";a:2:{s:3:\"hex\";s:5:\"\\f3b7\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-joomla\";a:2:{s:3:\"hex\";s:5:\"\\f1aa\";s:7:\"unicode\";s:8:\"\";}s:9:\"fab fa-js\";a:2:{s:3:\"hex\";s:5:\"\\f3b8\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-js-square\";a:2:{s:3:\"hex\";s:5:\"\\f3b9\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-jsfiddle\";a:2:{s:3:\"hex\";s:5:\"\\f1cc\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-kaggle\";a:2:{s:3:\"hex\";s:5:\"\\f5fa\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-keybase\";a:2:{s:3:\"hex\";s:5:\"\\f4f5\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-keycdn\";a:2:{s:3:\"hex\";s:5:\"\\f3ba\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-kickstarter\";a:2:{s:3:\"hex\";s:5:\"\\f3bb\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-kickstarter-k\";a:2:{s:3:\"hex\";s:5:\"\\f3bc\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-korvue\";a:2:{s:3:\"hex\";s:5:\"\\f42f\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-laravel\";a:2:{s:3:\"hex\";s:5:\"\\f3bd\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-lastfm\";a:2:{s:3:\"hex\";s:5:\"\\f202\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-lastfm-square\";a:2:{s:3:\"hex\";s:5:\"\\f203\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-leanpub\";a:2:{s:3:\"hex\";s:5:\"\\f212\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-less\";a:2:{s:3:\"hex\";s:5:\"\\f41d\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-line\";a:2:{s:3:\"hex\";s:5:\"\\f3c0\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-linkedin\";a:2:{s:3:\"hex\";s:5:\"\\f08c\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-linkedin-in\";a:2:{s:3:\"hex\";s:5:\"\\f0e1\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-linode\";a:2:{s:3:\"hex\";s:5:\"\\f2b8\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-linux\";a:2:{s:3:\"hex\";s:5:\"\\f17c\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-lyft\";a:2:{s:3:\"hex\";s:5:\"\\f3c3\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-magento\";a:2:{s:3:\"hex\";s:5:\"\\f3c4\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-mailchimp\";a:2:{s:3:\"hex\";s:5:\"\\f59e\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-mandalorian\";a:2:{s:3:\"hex\";s:5:\"\\f50f\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-markdown\";a:2:{s:3:\"hex\";s:5:\"\\f60f\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-mastodon\";a:2:{s:3:\"hex\";s:5:\"\\f4f6\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-maxcdn\";a:2:{s:3:\"hex\";s:5:\"\\f136\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-mdb\";a:2:{s:3:\"hex\";s:5:\"\\f8ca\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-medapps\";a:2:{s:3:\"hex\";s:5:\"\\f3c6\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-medium\";a:2:{s:3:\"hex\";s:5:\"\\f23a\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-medium-m\";a:2:{s:3:\"hex\";s:5:\"\\f3c7\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-medrt\";a:2:{s:3:\"hex\";s:5:\"\\f3c8\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-meetup\";a:2:{s:3:\"hex\";s:5:\"\\f2e0\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-megaport\";a:2:{s:3:\"hex\";s:5:\"\\f5a3\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-mendeley\";a:2:{s:3:\"hex\";s:5:\"\\f7b3\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-microblog\";a:2:{s:3:\"hex\";s:5:\"\\e01a\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-microsoft\";a:2:{s:3:\"hex\";s:5:\"\\f3ca\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-mix\";a:2:{s:3:\"hex\";s:5:\"\\f3cb\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-mixcloud\";a:2:{s:3:\"hex\";s:5:\"\\f289\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-mixer\";a:2:{s:3:\"hex\";s:5:\"\\e056\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-mizuni\";a:2:{s:3:\"hex\";s:5:\"\\f3cc\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-modx\";a:2:{s:3:\"hex\";s:5:\"\\f285\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-monero\";a:2:{s:3:\"hex\";s:5:\"\\f3d0\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-napster\";a:2:{s:3:\"hex\";s:5:\"\\f3d2\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-neos\";a:2:{s:3:\"hex\";s:5:\"\\f612\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-nimblr\";a:2:{s:3:\"hex\";s:5:\"\\f5a8\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-node\";a:2:{s:3:\"hex\";s:5:\"\\f419\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-node-js\";a:2:{s:3:\"hex\";s:5:\"\\f3d3\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-npm\";a:2:{s:3:\"hex\";s:5:\"\\f3d4\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-ns8\";a:2:{s:3:\"hex\";s:5:\"\\f3d5\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-nutritionix\";a:2:{s:3:\"hex\";s:5:\"\\f3d6\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-octopus-deploy\";a:2:{s:3:\"hex\";s:5:\"\\e082\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-odnoklassniki\";a:2:{s:3:\"hex\";s:5:\"\\f263\";s:7:\"unicode\";s:8:\"\";}s:27:\"fab fa-odnoklassniki-square\";a:2:{s:3:\"hex\";s:5:\"\\f264\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-old-republic\";a:2:{s:3:\"hex\";s:5:\"\\f510\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-opencart\";a:2:{s:3:\"hex\";s:5:\"\\f23d\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-openid\";a:2:{s:3:\"hex\";s:5:\"\\f19b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-opera\";a:2:{s:3:\"hex\";s:5:\"\\f26a\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-optin-monster\";a:2:{s:3:\"hex\";s:5:\"\\f23c\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-orcid\";a:2:{s:3:\"hex\";s:5:\"\\f8d2\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-osi\";a:2:{s:3:\"hex\";s:5:\"\\f41a\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-page4\";a:2:{s:3:\"hex\";s:5:\"\\f3d7\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-pagelines\";a:2:{s:3:\"hex\";s:5:\"\\f18c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-palfed\";a:2:{s:3:\"hex\";s:5:\"\\f3d8\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-patreon\";a:2:{s:3:\"hex\";s:5:\"\\f3d9\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-paypal\";a:2:{s:3:\"hex\";s:5:\"\\f1ed\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-penny-arcade\";a:2:{s:3:\"hex\";s:5:\"\\f704\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-perbyte\";a:2:{s:3:\"hex\";s:5:\"\\e083\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-periscope\";a:2:{s:3:\"hex\";s:5:\"\\f3da\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-phabricator\";a:2:{s:3:\"hex\";s:5:\"\\f3db\";s:7:\"unicode\";s:8:\"\";}s:24:\"fab fa-phoenix-framework\";a:2:{s:3:\"hex\";s:5:\"\\f3dc\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-phoenix-squadron\";a:2:{s:3:\"hex\";s:5:\"\\f511\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-php\";a:2:{s:3:\"hex\";s:5:\"\\f457\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-pied-piper\";a:2:{s:3:\"hex\";s:5:\"\\f2ae\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-pied-piper-alt\";a:2:{s:3:\"hex\";s:5:\"\\f1a8\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-pied-piper-hat\";a:2:{s:3:\"hex\";s:5:\"\\f4e5\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-pied-piper-pp\";a:2:{s:3:\"hex\";s:5:\"\\f1a7\";s:7:\"unicode\";s:8:\"\";}s:24:\"fab fa-pied-piper-square\";a:2:{s:3:\"hex\";s:5:\"\\e01e\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-pinterest\";a:2:{s:3:\"hex\";s:5:\"\\f0d2\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-pinterest-p\";a:2:{s:3:\"hex\";s:5:\"\\f231\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-pinterest-square\";a:2:{s:3:\"hex\";s:5:\"\\f0d3\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-playstation\";a:2:{s:3:\"hex\";s:5:\"\\f3df\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-product-hunt\";a:2:{s:3:\"hex\";s:5:\"\\f288\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-pushed\";a:2:{s:3:\"hex\";s:5:\"\\f3e1\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-python\";a:2:{s:3:\"hex\";s:5:\"\\f3e2\";s:7:\"unicode\";s:8:\"\";}s:9:\"fab fa-qq\";a:2:{s:3:\"hex\";s:5:\"\\f1d6\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-quinscape\";a:2:{s:3:\"hex\";s:5:\"\\f459\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-quora\";a:2:{s:3:\"hex\";s:5:\"\\f2c4\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-r-project\";a:2:{s:3:\"hex\";s:5:\"\\f4f7\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-raspberry-pi\";a:2:{s:3:\"hex\";s:5:\"\\f7bb\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-ravelry\";a:2:{s:3:\"hex\";s:5:\"\\f2d9\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-react\";a:2:{s:3:\"hex\";s:5:\"\\f41b\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-reacteurope\";a:2:{s:3:\"hex\";s:5:\"\\f75d\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-readme\";a:2:{s:3:\"hex\";s:5:\"\\f4d5\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-rebel\";a:2:{s:3:\"hex\";s:5:\"\\f1d0\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-red-river\";a:2:{s:3:\"hex\";s:5:\"\\f3e3\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-reddit\";a:2:{s:3:\"hex\";s:5:\"\\f1a1\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-reddit-alien\";a:2:{s:3:\"hex\";s:5:\"\\f281\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-reddit-square\";a:2:{s:3:\"hex\";s:5:\"\\f1a2\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-redhat\";a:2:{s:3:\"hex\";s:5:\"\\f7bc\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-renren\";a:2:{s:3:\"hex\";s:5:\"\\f18b\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-replyd\";a:2:{s:3:\"hex\";s:5:\"\\f3e6\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-researchgate\";a:2:{s:3:\"hex\";s:5:\"\\f4f8\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-resolving\";a:2:{s:3:\"hex\";s:5:\"\\f3e7\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-rev\";a:2:{s:3:\"hex\";s:5:\"\\f5b2\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-rocketchat\";a:2:{s:3:\"hex\";s:5:\"\\f3e8\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-rockrms\";a:2:{s:3:\"hex\";s:5:\"\\f3e9\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-rust\";a:2:{s:3:\"hex\";s:5:\"\\e07a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-safari\";a:2:{s:3:\"hex\";s:5:\"\\f267\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-salesforce\";a:2:{s:3:\"hex\";s:5:\"\\f83b\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-sass\";a:2:{s:3:\"hex\";s:5:\"\\f41e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-schlix\";a:2:{s:3:\"hex\";s:5:\"\\f3ea\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-scribd\";a:2:{s:3:\"hex\";s:5:\"\\f28a\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-searchengin\";a:2:{s:3:\"hex\";s:5:\"\\f3eb\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-sellcast\";a:2:{s:3:\"hex\";s:5:\"\\f2da\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-sellsy\";a:2:{s:3:\"hex\";s:5:\"\\f213\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-servicestack\";a:2:{s:3:\"hex\";s:5:\"\\f3ec\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-shirtsinbulk\";a:2:{s:3:\"hex\";s:5:\"\\f214\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-shopify\";a:2:{s:3:\"hex\";s:5:\"\\e057\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-shopware\";a:2:{s:3:\"hex\";s:5:\"\\f5b5\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-simplybuilt\";a:2:{s:3:\"hex\";s:5:\"\\f215\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-sistrix\";a:2:{s:3:\"hex\";s:5:\"\\f3ee\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-sith\";a:2:{s:3:\"hex\";s:5:\"\\f512\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-sketch\";a:2:{s:3:\"hex\";s:5:\"\\f7c6\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-skyatlas\";a:2:{s:3:\"hex\";s:5:\"\\f216\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-skype\";a:2:{s:3:\"hex\";s:5:\"\\f17e\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-slack\";a:2:{s:3:\"hex\";s:5:\"\\f198\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-slack-hash\";a:2:{s:3:\"hex\";s:5:\"\\f3ef\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-slideshare\";a:2:{s:3:\"hex\";s:5:\"\\f1e7\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-snapchat\";a:2:{s:3:\"hex\";s:5:\"\\f2ab\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-snapchat-ghost\";a:2:{s:3:\"hex\";s:5:\"\\f2ac\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-snapchat-square\";a:2:{s:3:\"hex\";s:5:\"\\f2ad\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-soundcloud\";a:2:{s:3:\"hex\";s:5:\"\\f1be\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-sourcetree\";a:2:{s:3:\"hex\";s:5:\"\\f7d3\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-speakap\";a:2:{s:3:\"hex\";s:5:\"\\f3f3\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-speaker-deck\";a:2:{s:3:\"hex\";s:5:\"\\f83c\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-spotify\";a:2:{s:3:\"hex\";s:5:\"\\f1bc\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-squarespace\";a:2:{s:3:\"hex\";s:5:\"\\f5be\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-stack-exchange\";a:2:{s:3:\"hex\";s:5:\"\\f18d\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-stack-overflow\";a:2:{s:3:\"hex\";s:5:\"\\f16c\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-stackpath\";a:2:{s:3:\"hex\";s:5:\"\\f842\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-staylinked\";a:2:{s:3:\"hex\";s:5:\"\\f3f5\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-steam\";a:2:{s:3:\"hex\";s:5:\"\\f1b6\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-steam-square\";a:2:{s:3:\"hex\";s:5:\"\\f1b7\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-steam-symbol\";a:2:{s:3:\"hex\";s:5:\"\\f3f6\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-sticker-mule\";a:2:{s:3:\"hex\";s:5:\"\\f3f7\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-strava\";a:2:{s:3:\"hex\";s:5:\"\\f428\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-stripe\";a:2:{s:3:\"hex\";s:5:\"\\f429\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-stripe-s\";a:2:{s:3:\"hex\";s:5:\"\\f42a\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-studiovinari\";a:2:{s:3:\"hex\";s:5:\"\\f3f8\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-stumbleupon\";a:2:{s:3:\"hex\";s:5:\"\\f1a4\";s:7:\"unicode\";s:8:\"\";}s:25:\"fab fa-stumbleupon-circle\";a:2:{s:3:\"hex\";s:5:\"\\f1a3\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-superpowers\";a:2:{s:3:\"hex\";s:5:\"\\f2dd\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-supple\";a:2:{s:3:\"hex\";s:5:\"\\f3f9\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-suse\";a:2:{s:3:\"hex\";s:5:\"\\f7d6\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-swift\";a:2:{s:3:\"hex\";s:5:\"\\f8e1\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-symfony\";a:2:{s:3:\"hex\";s:5:\"\\f83d\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-teamspeak\";a:2:{s:3:\"hex\";s:5:\"\\f4f9\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-telegram\";a:2:{s:3:\"hex\";s:5:\"\\f2c6\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-telegram-plane\";a:2:{s:3:\"hex\";s:5:\"\\f3fe\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-tencent-weibo\";a:2:{s:3:\"hex\";s:5:\"\\f1d5\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-the-red-yeti\";a:2:{s:3:\"hex\";s:5:\"\\f69d\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-themeco\";a:2:{s:3:\"hex\";s:5:\"\\f5c6\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-themeisle\";a:2:{s:3:\"hex\";s:5:\"\\f2b2\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-think-peaks\";a:2:{s:3:\"hex\";s:5:\"\\f731\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-tiktok\";a:2:{s:3:\"hex\";s:5:\"\\e07b\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-trade-federation\";a:2:{s:3:\"hex\";s:5:\"\\f513\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-trello\";a:2:{s:3:\"hex\";s:5:\"\\f181\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-tumblr\";a:2:{s:3:\"hex\";s:5:\"\\f173\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-tumblr-square\";a:2:{s:3:\"hex\";s:5:\"\\f174\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-twitch\";a:2:{s:3:\"hex\";s:5:\"\\f1e8\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-twitter\";a:2:{s:3:\"hex\";s:5:\"\\f099\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-twitter-square\";a:2:{s:3:\"hex\";s:5:\"\\f081\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-typo3\";a:2:{s:3:\"hex\";s:5:\"\\f42b\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-uber\";a:2:{s:3:\"hex\";s:5:\"\\f402\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-ubuntu\";a:2:{s:3:\"hex\";s:5:\"\\f7df\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-uikit\";a:2:{s:3:\"hex\";s:5:\"\\f403\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-umbraco\";a:2:{s:3:\"hex\";s:5:\"\\f8e8\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-uncharted\";a:2:{s:3:\"hex\";s:5:\"\\e084\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-uniregistry\";a:2:{s:3:\"hex\";s:5:\"\\f404\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-unity\";a:2:{s:3:\"hex\";s:5:\"\\e049\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-unsplash\";a:2:{s:3:\"hex\";s:5:\"\\e07c\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-untappd\";a:2:{s:3:\"hex\";s:5:\"\\f405\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-ups\";a:2:{s:3:\"hex\";s:5:\"\\f7e0\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-usb\";a:2:{s:3:\"hex\";s:5:\"\\f287\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-usps\";a:2:{s:3:\"hex\";s:5:\"\\f7e1\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-ussunnah\";a:2:{s:3:\"hex\";s:5:\"\\f407\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-vaadin\";a:2:{s:3:\"hex\";s:5:\"\\f408\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-viacoin\";a:2:{s:3:\"hex\";s:5:\"\\f237\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-viadeo\";a:2:{s:3:\"hex\";s:5:\"\\f2a9\";s:7:\"unicode\";s:8:\"\";}s:20:\"fab fa-viadeo-square\";a:2:{s:3:\"hex\";s:5:\"\\f2aa\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-viber\";a:2:{s:3:\"hex\";s:5:\"\\f409\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-vimeo\";a:2:{s:3:\"hex\";s:5:\"\\f40a\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-vimeo-square\";a:2:{s:3:\"hex\";s:5:\"\\f194\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-vimeo-v\";a:2:{s:3:\"hex\";s:5:\"\\f27d\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-vine\";a:2:{s:3:\"hex\";s:5:\"\\f1ca\";s:7:\"unicode\";s:8:\"\";}s:9:\"fab fa-vk\";a:2:{s:3:\"hex\";s:5:\"\\f189\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-vnv\";a:2:{s:3:\"hex\";s:5:\"\\f40b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-vuejs\";a:2:{s:3:\"hex\";s:5:\"\\f41f\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-watchman-monitoring\";a:2:{s:3:\"hex\";s:5:\"\\e087\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-waze\";a:2:{s:3:\"hex\";s:5:\"\\f83f\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-weebly\";a:2:{s:3:\"hex\";s:5:\"\\f5cc\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-weibo\";a:2:{s:3:\"hex\";s:5:\"\\f18a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-weixin\";a:2:{s:3:\"hex\";s:5:\"\\f1d7\";s:7:\"unicode\";s:8:\"\";}s:15:\"fab fa-whatsapp\";a:2:{s:3:\"hex\";s:5:\"\\f232\";s:7:\"unicode\";s:8:\"\";}s:22:\"fab fa-whatsapp-square\";a:2:{s:3:\"hex\";s:5:\"\\f40c\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-whmcs\";a:2:{s:3:\"hex\";s:5:\"\\f40d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-wikipedia-w\";a:2:{s:3:\"hex\";s:5:\"\\f266\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-windows\";a:2:{s:3:\"hex\";s:5:\"\\f17a\";s:7:\"unicode\";s:8:\"\";}s:10:\"fab fa-wix\";a:2:{s:3:\"hex\";s:5:\"\\f5cf\";s:7:\"unicode\";s:8:\"\";}s:27:\"fab fa-wizards-of-the-coast\";a:2:{s:3:\"hex\";s:5:\"\\f730\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-wodu\";a:2:{s:3:\"hex\";s:5:\"\\e088\";s:7:\"unicode\";s:8:\"\";}s:26:\"fab fa-wolf-pack-battalion\";a:2:{s:3:\"hex\";s:5:\"\\f514\";s:7:\"unicode\";s:8:\"\";}s:16:\"fab fa-wordpress\";a:2:{s:3:\"hex\";s:5:\"\\f19a\";s:7:\"unicode\";s:8:\"\";}s:23:\"fab fa-wordpress-simple\";a:2:{s:3:\"hex\";s:5:\"\\f411\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-wpbeginner\";a:2:{s:3:\"hex\";s:5:\"\\f297\";s:7:\"unicode\";s:8:\"\";}s:17:\"fab fa-wpexplorer\";a:2:{s:3:\"hex\";s:5:\"\\f2de\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-wpforms\";a:2:{s:3:\"hex\";s:5:\"\\f298\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-wpressr\";a:2:{s:3:\"hex\";s:5:\"\\f3e4\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-xbox\";a:2:{s:3:\"hex\";s:5:\"\\f412\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-xing\";a:2:{s:3:\"hex\";s:5:\"\\f168\";s:7:\"unicode\";s:8:\"\";}s:18:\"fab fa-xing-square\";a:2:{s:3:\"hex\";s:5:\"\\f169\";s:7:\"unicode\";s:8:\"\";}s:19:\"fab fa-y-combinator\";a:2:{s:3:\"hex\";s:5:\"\\f23b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-yahoo\";a:2:{s:3:\"hex\";s:5:\"\\f19e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-yammer\";a:2:{s:3:\"hex\";s:5:\"\\f840\";s:7:\"unicode\";s:8:\"\";}s:13:\"fab fa-yandex\";a:2:{s:3:\"hex\";s:5:\"\\f413\";s:7:\"unicode\";s:8:\"\";}s:27:\"fab fa-yandex-international\";a:2:{s:3:\"hex\";s:5:\"\\f414\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-yarn\";a:2:{s:3:\"hex\";s:5:\"\\f7e3\";s:7:\"unicode\";s:8:\"\";}s:11:\"fab fa-yelp\";a:2:{s:3:\"hex\";s:5:\"\\f1e9\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-yoast\";a:2:{s:3:\"hex\";s:5:\"\\f2b1\";s:7:\"unicode\";s:8:\"\";}s:14:\"fab fa-youtube\";a:2:{s:3:\"hex\";s:5:\"\\f167\";s:7:\"unicode\";s:8:\"\";}s:21:\"fab fa-youtube-square\";a:2:{s:3:\"hex\";s:5:\"\\f431\";s:7:\"unicode\";s:8:\"\";}s:12:\"fab fa-zhihu\";a:2:{s:3:\"hex\";s:5:\"\\f63f\";s:7:\"unicode\";s:8:\"\";}}s:3:\"fas\";a:1002:{s:9:\"fas fa-ad\";a:2:{s:3:\"hex\";s:5:\"\\f641\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-address-book\";a:2:{s:3:\"hex\";s:5:\"\\f2b9\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-address-card\";a:2:{s:3:\"hex\";s:5:\"\\f2bb\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-adjust\";a:2:{s:3:\"hex\";s:5:\"\\f042\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-air-freshener\";a:2:{s:3:\"hex\";s:5:\"\\f5d0\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-align-center\";a:2:{s:3:\"hex\";s:5:\"\\f037\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-align-justify\";a:2:{s:3:\"hex\";s:5:\"\\f039\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-align-left\";a:2:{s:3:\"hex\";s:5:\"\\f036\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-align-right\";a:2:{s:3:\"hex\";s:5:\"\\f038\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-allergies\";a:2:{s:3:\"hex\";s:5:\"\\f461\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-ambulance\";a:2:{s:3:\"hex\";s:5:\"\\f0f9\";s:7:\"unicode\";s:8:\"\";}s:42:\"fas fa-american-sign-language-interpreting\";a:2:{s:3:\"hex\";s:5:\"\\f2a3\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-anchor\";a:2:{s:3:\"hex\";s:5:\"\\f13d\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-angle-double-down\";a:2:{s:3:\"hex\";s:5:\"\\f103\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-angle-double-left\";a:2:{s:3:\"hex\";s:5:\"\\f100\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-angle-double-right\";a:2:{s:3:\"hex\";s:5:\"\\f101\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-angle-double-up\";a:2:{s:3:\"hex\";s:5:\"\\f102\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-angle-down\";a:2:{s:3:\"hex\";s:5:\"\\f107\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-angle-left\";a:2:{s:3:\"hex\";s:5:\"\\f104\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-angle-right\";a:2:{s:3:\"hex\";s:5:\"\\f105\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-angle-up\";a:2:{s:3:\"hex\";s:5:\"\\f106\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-angry\";a:2:{s:3:\"hex\";s:5:\"\\f556\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-ankh\";a:2:{s:3:\"hex\";s:5:\"\\f644\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-apple-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5d1\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-archive\";a:2:{s:3:\"hex\";s:5:\"\\f187\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-archway\";a:2:{s:3:\"hex\";s:5:\"\\f557\";s:7:\"unicode\";s:8:\"\";}s:28:\"fas fa-arrow-alt-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f358\";s:7:\"unicode\";s:8:\"\";}s:28:\"fas fa-arrow-alt-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f359\";s:7:\"unicode\";s:8:\"\";}s:29:\"fas fa-arrow-alt-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f35a\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-arrow-alt-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f35b\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-arrow-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f0ab\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-arrow-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f0a8\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-arrow-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f0a9\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-arrow-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f0aa\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-arrow-down\";a:2:{s:3:\"hex\";s:5:\"\\f063\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-arrow-left\";a:2:{s:3:\"hex\";s:5:\"\\f060\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-arrow-right\";a:2:{s:3:\"hex\";s:5:\"\\f061\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-arrow-up\";a:2:{s:3:\"hex\";s:5:\"\\f062\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-arrows-alt\";a:2:{s:3:\"hex\";s:5:\"\\f0b2\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-arrows-alt-h\";a:2:{s:3:\"hex\";s:5:\"\\f337\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-arrows-alt-v\";a:2:{s:3:\"hex\";s:5:\"\\f338\";s:7:\"unicode\";s:8:\"\";}s:34:\"fas fa-assistive-listening-systems\";a:2:{s:3:\"hex\";s:5:\"\\f2a2\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-asterisk\";a:2:{s:3:\"hex\";s:5:\"\\f069\";s:7:\"unicode\";s:8:\"\";}s:9:\"fas fa-at\";a:2:{s:3:\"hex\";s:5:\"\\f1fa\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-atlas\";a:2:{s:3:\"hex\";s:5:\"\\f558\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-atom\";a:2:{s:3:\"hex\";s:5:\"\\f5d2\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-audio-description\";a:2:{s:3:\"hex\";s:5:\"\\f29e\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-award\";a:2:{s:3:\"hex\";s:5:\"\\f559\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-baby\";a:2:{s:3:\"hex\";s:5:\"\\f77c\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-baby-carriage\";a:2:{s:3:\"hex\";s:5:\"\\f77d\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-backspace\";a:2:{s:3:\"hex\";s:5:\"\\f55a\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-backward\";a:2:{s:3:\"hex\";s:5:\"\\f04a\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-bacon\";a:2:{s:3:\"hex\";s:5:\"\\f7e5\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-bacteria\";a:2:{s:3:\"hex\";s:5:\"\\e059\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-bacterium\";a:2:{s:3:\"hex\";s:5:\"\\e05a\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-bahai\";a:2:{s:3:\"hex\";s:5:\"\\f666\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-balance-scale\";a:2:{s:3:\"hex\";s:5:\"\\f24e\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-balance-scale-left\";a:2:{s:3:\"hex\";s:5:\"\\f515\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-balance-scale-right\";a:2:{s:3:\"hex\";s:5:\"\\f516\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-ban\";a:2:{s:3:\"hex\";s:5:\"\\f05e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-band-aid\";a:2:{s:3:\"hex\";s:5:\"\\f462\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-barcode\";a:2:{s:3:\"hex\";s:5:\"\\f02a\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bars\";a:2:{s:3:\"hex\";s:5:\"\\f0c9\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-baseball-ball\";a:2:{s:3:\"hex\";s:5:\"\\f433\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-basketball-ball\";a:2:{s:3:\"hex\";s:5:\"\\f434\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bath\";a:2:{s:3:\"hex\";s:5:\"\\f2cd\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-battery-empty\";a:2:{s:3:\"hex\";s:5:\"\\f244\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-battery-full\";a:2:{s:3:\"hex\";s:5:\"\\f240\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-battery-half\";a:2:{s:3:\"hex\";s:5:\"\\f242\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-battery-quarter\";a:2:{s:3:\"hex\";s:5:\"\\f243\";s:7:\"unicode\";s:8:\"\";}s:29:\"fas fa-battery-three-quarters\";a:2:{s:3:\"hex\";s:5:\"\\f241\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-bed\";a:2:{s:3:\"hex\";s:5:\"\\f236\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-beer\";a:2:{s:3:\"hex\";s:5:\"\\f0fc\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bell\";a:2:{s:3:\"hex\";s:5:\"\\f0f3\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-bell-slash\";a:2:{s:3:\"hex\";s:5:\"\\f1f6\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-bezier-curve\";a:2:{s:3:\"hex\";s:5:\"\\f55b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-bible\";a:2:{s:3:\"hex\";s:5:\"\\f647\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-bicycle\";a:2:{s:3:\"hex\";s:5:\"\\f206\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-biking\";a:2:{s:3:\"hex\";s:5:\"\\f84a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-binoculars\";a:2:{s:3:\"hex\";s:5:\"\\f1e5\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-biohazard\";a:2:{s:3:\"hex\";s:5:\"\\f780\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-birthday-cake\";a:2:{s:3:\"hex\";s:5:\"\\f1fd\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-blender\";a:2:{s:3:\"hex\";s:5:\"\\f517\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-blender-phone\";a:2:{s:3:\"hex\";s:5:\"\\f6b6\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-blind\";a:2:{s:3:\"hex\";s:5:\"\\f29d\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-blog\";a:2:{s:3:\"hex\";s:5:\"\\f781\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bold\";a:2:{s:3:\"hex\";s:5:\"\\f032\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bolt\";a:2:{s:3:\"hex\";s:5:\"\\f0e7\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bomb\";a:2:{s:3:\"hex\";s:5:\"\\f1e2\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bone\";a:2:{s:3:\"hex\";s:5:\"\\f5d7\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-bong\";a:2:{s:3:\"hex\";s:5:\"\\f55c\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-book\";a:2:{s:3:\"hex\";s:5:\"\\f02d\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-book-dead\";a:2:{s:3:\"hex\";s:5:\"\\f6b7\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-book-medical\";a:2:{s:3:\"hex\";s:5:\"\\f7e6\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-book-open\";a:2:{s:3:\"hex\";s:5:\"\\f518\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-book-reader\";a:2:{s:3:\"hex\";s:5:\"\\f5da\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-bookmark\";a:2:{s:3:\"hex\";s:5:\"\\f02e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-border-all\";a:2:{s:3:\"hex\";s:5:\"\\f84c\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-border-none\";a:2:{s:3:\"hex\";s:5:\"\\f850\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-border-style\";a:2:{s:3:\"hex\";s:5:\"\\f853\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-bowling-ball\";a:2:{s:3:\"hex\";s:5:\"\\f436\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-box\";a:2:{s:3:\"hex\";s:5:\"\\f466\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-box-open\";a:2:{s:3:\"hex\";s:5:\"\\f49e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-box-tissue\";a:2:{s:3:\"hex\";s:5:\"\\e05b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-boxes\";a:2:{s:3:\"hex\";s:5:\"\\f468\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-braille\";a:2:{s:3:\"hex\";s:5:\"\\f2a1\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-brain\";a:2:{s:3:\"hex\";s:5:\"\\f5dc\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-bread-slice\";a:2:{s:3:\"hex\";s:5:\"\\f7ec\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-briefcase\";a:2:{s:3:\"hex\";s:5:\"\\f0b1\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-briefcase-medical\";a:2:{s:3:\"hex\";s:5:\"\\f469\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-broadcast-tower\";a:2:{s:3:\"hex\";s:5:\"\\f519\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-broom\";a:2:{s:3:\"hex\";s:5:\"\\f51a\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-brush\";a:2:{s:3:\"hex\";s:5:\"\\f55d\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-bug\";a:2:{s:3:\"hex\";s:5:\"\\f188\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-building\";a:2:{s:3:\"hex\";s:5:\"\\f1ad\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-bullhorn\";a:2:{s:3:\"hex\";s:5:\"\\f0a1\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-bullseye\";a:2:{s:3:\"hex\";s:5:\"\\f140\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-burn\";a:2:{s:3:\"hex\";s:5:\"\\f46a\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-bus\";a:2:{s:3:\"hex\";s:5:\"\\f207\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-bus-alt\";a:2:{s:3:\"hex\";s:5:\"\\f55e\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-business-time\";a:2:{s:3:\"hex\";s:5:\"\\f64a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-calculator\";a:2:{s:3:\"hex\";s:5:\"\\f1ec\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-calendar\";a:2:{s:3:\"hex\";s:5:\"\\f133\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-calendar-alt\";a:2:{s:3:\"hex\";s:5:\"\\f073\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-calendar-check\";a:2:{s:3:\"hex\";s:5:\"\\f274\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-calendar-day\";a:2:{s:3:\"hex\";s:5:\"\\f783\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-calendar-minus\";a:2:{s:3:\"hex\";s:5:\"\\f272\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-calendar-plus\";a:2:{s:3:\"hex\";s:5:\"\\f271\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-calendar-times\";a:2:{s:3:\"hex\";s:5:\"\\f273\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-calendar-week\";a:2:{s:3:\"hex\";s:5:\"\\f784\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-camera\";a:2:{s:3:\"hex\";s:5:\"\\f030\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-camera-retro\";a:2:{s:3:\"hex\";s:5:\"\\f083\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-campground\";a:2:{s:3:\"hex\";s:5:\"\\f6bb\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-candy-cane\";a:2:{s:3:\"hex\";s:5:\"\\f786\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-cannabis\";a:2:{s:3:\"hex\";s:5:\"\\f55f\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-capsules\";a:2:{s:3:\"hex\";s:5:\"\\f46b\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-car\";a:2:{s:3:\"hex\";s:5:\"\\f1b9\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-car-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5de\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-car-battery\";a:2:{s:3:\"hex\";s:5:\"\\f5df\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-car-crash\";a:2:{s:3:\"hex\";s:5:\"\\f5e1\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-car-side\";a:2:{s:3:\"hex\";s:5:\"\\f5e4\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-caravan\";a:2:{s:3:\"hex\";s:5:\"\\f8ff\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-caret-down\";a:2:{s:3:\"hex\";s:5:\"\\f0d7\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-caret-left\";a:2:{s:3:\"hex\";s:5:\"\\f0d9\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-caret-right\";a:2:{s:3:\"hex\";s:5:\"\\f0da\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-caret-square-down\";a:2:{s:3:\"hex\";s:5:\"\\f150\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-caret-square-left\";a:2:{s:3:\"hex\";s:5:\"\\f191\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-caret-square-right\";a:2:{s:3:\"hex\";s:5:\"\\f152\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-caret-square-up\";a:2:{s:3:\"hex\";s:5:\"\\f151\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-caret-up\";a:2:{s:3:\"hex\";s:5:\"\\f0d8\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-carrot\";a:2:{s:3:\"hex\";s:5:\"\\f787\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-cart-arrow-down\";a:2:{s:3:\"hex\";s:5:\"\\f218\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-cart-plus\";a:2:{s:3:\"hex\";s:5:\"\\f217\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-cash-register\";a:2:{s:3:\"hex\";s:5:\"\\f788\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-cat\";a:2:{s:3:\"hex\";s:5:\"\\f6be\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-certificate\";a:2:{s:3:\"hex\";s:5:\"\\f0a3\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-chair\";a:2:{s:3:\"hex\";s:5:\"\\f6c0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chalkboard\";a:2:{s:3:\"hex\";s:5:\"\\f51b\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-chalkboard-teacher\";a:2:{s:3:\"hex\";s:5:\"\\f51c\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-charging-station\";a:2:{s:3:\"hex\";s:5:\"\\f5e7\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chart-area\";a:2:{s:3:\"hex\";s:5:\"\\f1fe\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-chart-bar\";a:2:{s:3:\"hex\";s:5:\"\\f080\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chart-line\";a:2:{s:3:\"hex\";s:5:\"\\f201\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-chart-pie\";a:2:{s:3:\"hex\";s:5:\"\\f200\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-check\";a:2:{s:3:\"hex\";s:5:\"\\f00c\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-check-circle\";a:2:{s:3:\"hex\";s:5:\"\\f058\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-check-double\";a:2:{s:3:\"hex\";s:5:\"\\f560\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-check-square\";a:2:{s:3:\"hex\";s:5:\"\\f14a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-cheese\";a:2:{s:3:\"hex\";s:5:\"\\f7ef\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-chess\";a:2:{s:3:\"hex\";s:5:\"\\f439\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-chess-bishop\";a:2:{s:3:\"hex\";s:5:\"\\f43a\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-chess-board\";a:2:{s:3:\"hex\";s:5:\"\\f43c\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chess-king\";a:2:{s:3:\"hex\";s:5:\"\\f43f\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-chess-knight\";a:2:{s:3:\"hex\";s:5:\"\\f441\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chess-pawn\";a:2:{s:3:\"hex\";s:5:\"\\f443\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-chess-queen\";a:2:{s:3:\"hex\";s:5:\"\\f445\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chess-rook\";a:2:{s:3:\"hex\";s:5:\"\\f447\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-chevron-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f13a\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-chevron-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f137\";s:7:\"unicode\";s:8:\"\";}s:27:\"fas fa-chevron-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f138\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-chevron-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f139\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-chevron-down\";a:2:{s:3:\"hex\";s:5:\"\\f078\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-chevron-left\";a:2:{s:3:\"hex\";s:5:\"\\f053\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-chevron-right\";a:2:{s:3:\"hex\";s:5:\"\\f054\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-chevron-up\";a:2:{s:3:\"hex\";s:5:\"\\f077\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-child\";a:2:{s:3:\"hex\";s:5:\"\\f1ae\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-church\";a:2:{s:3:\"hex\";s:5:\"\\f51d\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-circle\";a:2:{s:3:\"hex\";s:5:\"\\f111\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-circle-notch\";a:2:{s:3:\"hex\";s:5:\"\\f1ce\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-city\";a:2:{s:3:\"hex\";s:5:\"\\f64f\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-clinic-medical\";a:2:{s:3:\"hex\";s:5:\"\\f7f2\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-clipboard\";a:2:{s:3:\"hex\";s:5:\"\\f328\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-clipboard-check\";a:2:{s:3:\"hex\";s:5:\"\\f46c\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-clipboard-list\";a:2:{s:3:\"hex\";s:5:\"\\f46d\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-clock\";a:2:{s:3:\"hex\";s:5:\"\\f017\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-clone\";a:2:{s:3:\"hex\";s:5:\"\\f24d\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-closed-captioning\";a:2:{s:3:\"hex\";s:5:\"\\f20a\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-cloud\";a:2:{s:3:\"hex\";s:5:\"\\f0c2\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-cloud-download-alt\";a:2:{s:3:\"hex\";s:5:\"\\f381\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-cloud-meatball\";a:2:{s:3:\"hex\";s:5:\"\\f73b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-cloud-moon\";a:2:{s:3:\"hex\";s:5:\"\\f6c3\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-cloud-moon-rain\";a:2:{s:3:\"hex\";s:5:\"\\f73c\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-cloud-rain\";a:2:{s:3:\"hex\";s:5:\"\\f73d\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-cloud-showers-heavy\";a:2:{s:3:\"hex\";s:5:\"\\f740\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-cloud-sun\";a:2:{s:3:\"hex\";s:5:\"\\f6c4\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-cloud-sun-rain\";a:2:{s:3:\"hex\";s:5:\"\\f743\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-cloud-upload-alt\";a:2:{s:3:\"hex\";s:5:\"\\f382\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-cocktail\";a:2:{s:3:\"hex\";s:5:\"\\f561\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-code\";a:2:{s:3:\"hex\";s:5:\"\\f121\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-code-branch\";a:2:{s:3:\"hex\";s:5:\"\\f126\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-coffee\";a:2:{s:3:\"hex\";s:5:\"\\f0f4\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-cog\";a:2:{s:3:\"hex\";s:5:\"\\f013\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-cogs\";a:2:{s:3:\"hex\";s:5:\"\\f085\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-coins\";a:2:{s:3:\"hex\";s:5:\"\\f51e\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-columns\";a:2:{s:3:\"hex\";s:5:\"\\f0db\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-comment\";a:2:{s:3:\"hex\";s:5:\"\\f075\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-comment-alt\";a:2:{s:3:\"hex\";s:5:\"\\f27a\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-comment-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f651\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-comment-dots\";a:2:{s:3:\"hex\";s:5:\"\\f4ad\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-comment-medical\";a:2:{s:3:\"hex\";s:5:\"\\f7f5\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-comment-slash\";a:2:{s:3:\"hex\";s:5:\"\\f4b3\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-comments\";a:2:{s:3:\"hex\";s:5:\"\\f086\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-comments-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f653\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-compact-disc\";a:2:{s:3:\"hex\";s:5:\"\\f51f\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-compass\";a:2:{s:3:\"hex\";s:5:\"\\f14e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-compress\";a:2:{s:3:\"hex\";s:5:\"\\f066\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-compress-alt\";a:2:{s:3:\"hex\";s:5:\"\\f422\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-compress-arrows-alt\";a:2:{s:3:\"hex\";s:5:\"\\f78c\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-concierge-bell\";a:2:{s:3:\"hex\";s:5:\"\\f562\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-cookie\";a:2:{s:3:\"hex\";s:5:\"\\f563\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-cookie-bite\";a:2:{s:3:\"hex\";s:5:\"\\f564\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-copy\";a:2:{s:3:\"hex\";s:5:\"\\f0c5\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-copyright\";a:2:{s:3:\"hex\";s:5:\"\\f1f9\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-couch\";a:2:{s:3:\"hex\";s:5:\"\\f4b8\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-credit-card\";a:2:{s:3:\"hex\";s:5:\"\\f09d\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-crop\";a:2:{s:3:\"hex\";s:5:\"\\f125\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-crop-alt\";a:2:{s:3:\"hex\";s:5:\"\\f565\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-cross\";a:2:{s:3:\"hex\";s:5:\"\\f654\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-crosshairs\";a:2:{s:3:\"hex\";s:5:\"\\f05b\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-crow\";a:2:{s:3:\"hex\";s:5:\"\\f520\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-crown\";a:2:{s:3:\"hex\";s:5:\"\\f521\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-crutch\";a:2:{s:3:\"hex\";s:5:\"\\f7f7\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-cube\";a:2:{s:3:\"hex\";s:5:\"\\f1b2\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-cubes\";a:2:{s:3:\"hex\";s:5:\"\\f1b3\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-cut\";a:2:{s:3:\"hex\";s:5:\"\\f0c4\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-database\";a:2:{s:3:\"hex\";s:5:\"\\f1c0\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-deaf\";a:2:{s:3:\"hex\";s:5:\"\\f2a4\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-democrat\";a:2:{s:3:\"hex\";s:5:\"\\f747\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-desktop\";a:2:{s:3:\"hex\";s:5:\"\\f108\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-dharmachakra\";a:2:{s:3:\"hex\";s:5:\"\\f655\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-diagnoses\";a:2:{s:3:\"hex\";s:5:\"\\f470\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-dice\";a:2:{s:3:\"hex\";s:5:\"\\f522\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-dice-d20\";a:2:{s:3:\"hex\";s:5:\"\\f6cf\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-dice-d6\";a:2:{s:3:\"hex\";s:5:\"\\f6d1\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-dice-five\";a:2:{s:3:\"hex\";s:5:\"\\f523\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-dice-four\";a:2:{s:3:\"hex\";s:5:\"\\f524\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-dice-one\";a:2:{s:3:\"hex\";s:5:\"\\f525\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-dice-six\";a:2:{s:3:\"hex\";s:5:\"\\f526\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-dice-three\";a:2:{s:3:\"hex\";s:5:\"\\f527\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-dice-two\";a:2:{s:3:\"hex\";s:5:\"\\f528\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-digital-tachograph\";a:2:{s:3:\"hex\";s:5:\"\\f566\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-directions\";a:2:{s:3:\"hex\";s:5:\"\\f5eb\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-disease\";a:2:{s:3:\"hex\";s:5:\"\\f7fa\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-divide\";a:2:{s:3:\"hex\";s:5:\"\\f529\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-dizzy\";a:2:{s:3:\"hex\";s:5:\"\\f567\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-dna\";a:2:{s:3:\"hex\";s:5:\"\\f471\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-dog\";a:2:{s:3:\"hex\";s:5:\"\\f6d3\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-dollar-sign\";a:2:{s:3:\"hex\";s:5:\"\\f155\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-dolly\";a:2:{s:3:\"hex\";s:5:\"\\f472\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-dolly-flatbed\";a:2:{s:3:\"hex\";s:5:\"\\f474\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-donate\";a:2:{s:3:\"hex\";s:5:\"\\f4b9\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-door-closed\";a:2:{s:3:\"hex\";s:5:\"\\f52a\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-door-open\";a:2:{s:3:\"hex\";s:5:\"\\f52b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-dot-circle\";a:2:{s:3:\"hex\";s:5:\"\\f192\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-dove\";a:2:{s:3:\"hex\";s:5:\"\\f4ba\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-download\";a:2:{s:3:\"hex\";s:5:\"\\f019\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-drafting-compass\";a:2:{s:3:\"hex\";s:5:\"\\f568\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-dragon\";a:2:{s:3:\"hex\";s:5:\"\\f6d5\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-draw-polygon\";a:2:{s:3:\"hex\";s:5:\"\\f5ee\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-drum\";a:2:{s:3:\"hex\";s:5:\"\\f569\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-drum-steelpan\";a:2:{s:3:\"hex\";s:5:\"\\f56a\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-drumstick-bite\";a:2:{s:3:\"hex\";s:5:\"\\f6d7\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-dumbbell\";a:2:{s:3:\"hex\";s:5:\"\\f44b\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-dumpster\";a:2:{s:3:\"hex\";s:5:\"\\f793\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-dumpster-fire\";a:2:{s:3:\"hex\";s:5:\"\\f794\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-dungeon\";a:2:{s:3:\"hex\";s:5:\"\\f6d9\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-edit\";a:2:{s:3:\"hex\";s:5:\"\\f044\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-egg\";a:2:{s:3:\"hex\";s:5:\"\\f7fb\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-eject\";a:2:{s:3:\"hex\";s:5:\"\\f052\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-ellipsis-h\";a:2:{s:3:\"hex\";s:5:\"\\f141\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-ellipsis-v\";a:2:{s:3:\"hex\";s:5:\"\\f142\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-envelope\";a:2:{s:3:\"hex\";s:5:\"\\f0e0\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-envelope-open\";a:2:{s:3:\"hex\";s:5:\"\\f2b6\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-envelope-open-text\";a:2:{s:3:\"hex\";s:5:\"\\f658\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-envelope-square\";a:2:{s:3:\"hex\";s:5:\"\\f199\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-equals\";a:2:{s:3:\"hex\";s:5:\"\\f52c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-eraser\";a:2:{s:3:\"hex\";s:5:\"\\f12d\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-ethernet\";a:2:{s:3:\"hex\";s:5:\"\\f796\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-euro-sign\";a:2:{s:3:\"hex\";s:5:\"\\f153\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-exchange-alt\";a:2:{s:3:\"hex\";s:5:\"\\f362\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-exclamation\";a:2:{s:3:\"hex\";s:5:\"\\f12a\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-exclamation-circle\";a:2:{s:3:\"hex\";s:5:\"\\f06a\";s:7:\"unicode\";s:8:\"\";}s:27:\"fas fa-exclamation-triangle\";a:2:{s:3:\"hex\";s:5:\"\\f071\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-expand\";a:2:{s:3:\"hex\";s:5:\"\\f065\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-expand-alt\";a:2:{s:3:\"hex\";s:5:\"\\f424\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-expand-arrows-alt\";a:2:{s:3:\"hex\";s:5:\"\\f31e\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-external-link-alt\";a:2:{s:3:\"hex\";s:5:\"\\f35d\";s:7:\"unicode\";s:8:\"\";}s:31:\"fas fa-external-link-square-alt\";a:2:{s:3:\"hex\";s:5:\"\\f360\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-eye\";a:2:{s:3:\"hex\";s:5:\"\\f06e\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-eye-dropper\";a:2:{s:3:\"hex\";s:5:\"\\f1fb\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-eye-slash\";a:2:{s:3:\"hex\";s:5:\"\\f070\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-fan\";a:2:{s:3:\"hex\";s:5:\"\\f863\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-fast-backward\";a:2:{s:3:\"hex\";s:5:\"\\f049\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-fast-forward\";a:2:{s:3:\"hex\";s:5:\"\\f050\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-faucet\";a:2:{s:3:\"hex\";s:5:\"\\e005\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-fax\";a:2:{s:3:\"hex\";s:5:\"\\f1ac\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-feather\";a:2:{s:3:\"hex\";s:5:\"\\f52d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-feather-alt\";a:2:{s:3:\"hex\";s:5:\"\\f56b\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-female\";a:2:{s:3:\"hex\";s:5:\"\\f182\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-fighter-jet\";a:2:{s:3:\"hex\";s:5:\"\\f0fb\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-file\";a:2:{s:3:\"hex\";s:5:\"\\f15b\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-file-alt\";a:2:{s:3:\"hex\";s:5:\"\\f15c\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-file-archive\";a:2:{s:3:\"hex\";s:5:\"\\f1c6\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-file-audio\";a:2:{s:3:\"hex\";s:5:\"\\f1c7\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-file-code\";a:2:{s:3:\"hex\";s:5:\"\\f1c9\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-file-contract\";a:2:{s:3:\"hex\";s:5:\"\\f56c\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-file-csv\";a:2:{s:3:\"hex\";s:5:\"\\f6dd\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-file-download\";a:2:{s:3:\"hex\";s:5:\"\\f56d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-file-excel\";a:2:{s:3:\"hex\";s:5:\"\\f1c3\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-file-export\";a:2:{s:3:\"hex\";s:5:\"\\f56e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-file-image\";a:2:{s:3:\"hex\";s:5:\"\\f1c5\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-file-import\";a:2:{s:3:\"hex\";s:5:\"\\f56f\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-file-invoice\";a:2:{s:3:\"hex\";s:5:\"\\f570\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-file-invoice-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f571\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-file-medical\";a:2:{s:3:\"hex\";s:5:\"\\f477\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-file-medical-alt\";a:2:{s:3:\"hex\";s:5:\"\\f478\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-file-pdf\";a:2:{s:3:\"hex\";s:5:\"\\f1c1\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-file-powerpoint\";a:2:{s:3:\"hex\";s:5:\"\\f1c4\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-file-prescription\";a:2:{s:3:\"hex\";s:5:\"\\f572\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-file-signature\";a:2:{s:3:\"hex\";s:5:\"\\f573\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-file-upload\";a:2:{s:3:\"hex\";s:5:\"\\f574\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-file-video\";a:2:{s:3:\"hex\";s:5:\"\\f1c8\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-file-word\";a:2:{s:3:\"hex\";s:5:\"\\f1c2\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-fill\";a:2:{s:3:\"hex\";s:5:\"\\f575\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-fill-drip\";a:2:{s:3:\"hex\";s:5:\"\\f576\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-film\";a:2:{s:3:\"hex\";s:5:\"\\f008\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-filter\";a:2:{s:3:\"hex\";s:5:\"\\f0b0\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-fingerprint\";a:2:{s:3:\"hex\";s:5:\"\\f577\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-fire\";a:2:{s:3:\"hex\";s:5:\"\\f06d\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-fire-alt\";a:2:{s:3:\"hex\";s:5:\"\\f7e4\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-fire-extinguisher\";a:2:{s:3:\"hex\";s:5:\"\\f134\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-first-aid\";a:2:{s:3:\"hex\";s:5:\"\\f479\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-fish\";a:2:{s:3:\"hex\";s:5:\"\\f578\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-fist-raised\";a:2:{s:3:\"hex\";s:5:\"\\f6de\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-flag\";a:2:{s:3:\"hex\";s:5:\"\\f024\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-flag-checkered\";a:2:{s:3:\"hex\";s:5:\"\\f11e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-flag-usa\";a:2:{s:3:\"hex\";s:5:\"\\f74d\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-flask\";a:2:{s:3:\"hex\";s:5:\"\\f0c3\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-flushed\";a:2:{s:3:\"hex\";s:5:\"\\f579\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-folder\";a:2:{s:3:\"hex\";s:5:\"\\f07b\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-folder-minus\";a:2:{s:3:\"hex\";s:5:\"\\f65d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-folder-open\";a:2:{s:3:\"hex\";s:5:\"\\f07c\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-folder-plus\";a:2:{s:3:\"hex\";s:5:\"\\f65e\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-font\";a:2:{s:3:\"hex\";s:5:\"\\f031\";s:7:\"unicode\";s:8:\"\";}s:29:\"fas fa-font-awesome-logo-full\";a:2:{s:3:\"hex\";s:5:\"\\f4e6\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-football-ball\";a:2:{s:3:\"hex\";s:5:\"\\f44e\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-forward\";a:2:{s:3:\"hex\";s:5:\"\\f04e\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-frog\";a:2:{s:3:\"hex\";s:5:\"\\f52e\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-frown\";a:2:{s:3:\"hex\";s:5:\"\\f119\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-frown-open\";a:2:{s:3:\"hex\";s:5:\"\\f57a\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-funnel-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f662\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-futbol\";a:2:{s:3:\"hex\";s:5:\"\\f1e3\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-gamepad\";a:2:{s:3:\"hex\";s:5:\"\\f11b\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-gas-pump\";a:2:{s:3:\"hex\";s:5:\"\\f52f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-gavel\";a:2:{s:3:\"hex\";s:5:\"\\f0e3\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-gem\";a:2:{s:3:\"hex\";s:5:\"\\f3a5\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-genderless\";a:2:{s:3:\"hex\";s:5:\"\\f22d\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-ghost\";a:2:{s:3:\"hex\";s:5:\"\\f6e2\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-gift\";a:2:{s:3:\"hex\";s:5:\"\\f06b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-gifts\";a:2:{s:3:\"hex\";s:5:\"\\f79c\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-glass-cheers\";a:2:{s:3:\"hex\";s:5:\"\\f79f\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-glass-martini\";a:2:{s:3:\"hex\";s:5:\"\\f000\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-glass-martini-alt\";a:2:{s:3:\"hex\";s:5:\"\\f57b\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-glass-whiskey\";a:2:{s:3:\"hex\";s:5:\"\\f7a0\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-glasses\";a:2:{s:3:\"hex\";s:5:\"\\f530\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-globe\";a:2:{s:3:\"hex\";s:5:\"\\f0ac\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-globe-africa\";a:2:{s:3:\"hex\";s:5:\"\\f57c\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-globe-americas\";a:2:{s:3:\"hex\";s:5:\"\\f57d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-globe-asia\";a:2:{s:3:\"hex\";s:5:\"\\f57e\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-globe-europe\";a:2:{s:3:\"hex\";s:5:\"\\f7a2\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-golf-ball\";a:2:{s:3:\"hex\";s:5:\"\\f450\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-gopuram\";a:2:{s:3:\"hex\";s:5:\"\\f664\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-graduation-cap\";a:2:{s:3:\"hex\";s:5:\"\\f19d\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-greater-than\";a:2:{s:3:\"hex\";s:5:\"\\f531\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-greater-than-equal\";a:2:{s:3:\"hex\";s:5:\"\\f532\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-grimace\";a:2:{s:3:\"hex\";s:5:\"\\f57f\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-grin\";a:2:{s:3:\"hex\";s:5:\"\\f580\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-grin-alt\";a:2:{s:3:\"hex\";s:5:\"\\f581\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-grin-beam\";a:2:{s:3:\"hex\";s:5:\"\\f582\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-grin-beam-sweat\";a:2:{s:3:\"hex\";s:5:\"\\f583\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-grin-hearts\";a:2:{s:3:\"hex\";s:5:\"\\f584\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-grin-squint\";a:2:{s:3:\"hex\";s:5:\"\\f585\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-grin-squint-tears\";a:2:{s:3:\"hex\";s:5:\"\\f586\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-grin-stars\";a:2:{s:3:\"hex\";s:5:\"\\f587\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-grin-tears\";a:2:{s:3:\"hex\";s:5:\"\\f588\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-grin-tongue\";a:2:{s:3:\"hex\";s:5:\"\\f589\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-grin-tongue-squint\";a:2:{s:3:\"hex\";s:5:\"\\f58a\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-grin-tongue-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58b\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-grin-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58c\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-grip-horizontal\";a:2:{s:3:\"hex\";s:5:\"\\f58d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-grip-lines\";a:2:{s:3:\"hex\";s:5:\"\\f7a4\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-grip-lines-vertical\";a:2:{s:3:\"hex\";s:5:\"\\f7a5\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-grip-vertical\";a:2:{s:3:\"hex\";s:5:\"\\f58e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-guitar\";a:2:{s:3:\"hex\";s:5:\"\\f7a6\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-h-square\";a:2:{s:3:\"hex\";s:5:\"\\f0fd\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-hamburger\";a:2:{s:3:\"hex\";s:5:\"\\f805\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-hammer\";a:2:{s:3:\"hex\";s:5:\"\\f6e3\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-hamsa\";a:2:{s:3:\"hex\";s:5:\"\\f665\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-hand-holding\";a:2:{s:3:\"hex\";s:5:\"\\f4bd\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-hand-holding-heart\";a:2:{s:3:\"hex\";s:5:\"\\f4be\";s:7:\"unicode\";s:8:\"\";}s:27:\"fas fa-hand-holding-medical\";a:2:{s:3:\"hex\";s:5:\"\\e05c\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-hand-holding-usd\";a:2:{s:3:\"hex\";s:5:\"\\f4c0\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-hand-holding-water\";a:2:{s:3:\"hex\";s:5:\"\\f4c1\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-hand-lizard\";a:2:{s:3:\"hex\";s:5:\"\\f258\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-hand-middle-finger\";a:2:{s:3:\"hex\";s:5:\"\\f806\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-hand-paper\";a:2:{s:3:\"hex\";s:5:\"\\f256\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-hand-peace\";a:2:{s:3:\"hex\";s:5:\"\\f25b\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-hand-point-down\";a:2:{s:3:\"hex\";s:5:\"\\f0a7\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-hand-point-left\";a:2:{s:3:\"hex\";s:5:\"\\f0a5\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-hand-point-right\";a:2:{s:3:\"hex\";s:5:\"\\f0a4\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-hand-point-up\";a:2:{s:3:\"hex\";s:5:\"\\f0a6\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-hand-pointer\";a:2:{s:3:\"hex\";s:5:\"\\f25a\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-hand-rock\";a:2:{s:3:\"hex\";s:5:\"\\f255\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-hand-scissors\";a:2:{s:3:\"hex\";s:5:\"\\f257\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-hand-sparkles\";a:2:{s:3:\"hex\";s:5:\"\\e05d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-hand-spock\";a:2:{s:3:\"hex\";s:5:\"\\f259\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-hands\";a:2:{s:3:\"hex\";s:5:\"\\f4c2\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-hands-helping\";a:2:{s:3:\"hex\";s:5:\"\\f4c4\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-hands-wash\";a:2:{s:3:\"hex\";s:5:\"\\e05e\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-handshake\";a:2:{s:3:\"hex\";s:5:\"\\f2b5\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-handshake-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\e05f\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-handshake-slash\";a:2:{s:3:\"hex\";s:5:\"\\e060\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-hanukiah\";a:2:{s:3:\"hex\";s:5:\"\\f6e6\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-hard-hat\";a:2:{s:3:\"hex\";s:5:\"\\f807\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-hashtag\";a:2:{s:3:\"hex\";s:5:\"\\f292\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-hat-cowboy\";a:2:{s:3:\"hex\";s:5:\"\\f8c0\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-hat-cowboy-side\";a:2:{s:3:\"hex\";s:5:\"\\f8c1\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-hat-wizard\";a:2:{s:3:\"hex\";s:5:\"\\f6e8\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-hdd\";a:2:{s:3:\"hex\";s:5:\"\\f0a0\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-head-side-cough\";a:2:{s:3:\"hex\";s:5:\"\\e061\";s:7:\"unicode\";s:8:\"\";}s:28:\"fas fa-head-side-cough-slash\";a:2:{s:3:\"hex\";s:5:\"\\e062\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-head-side-mask\";a:2:{s:3:\"hex\";s:5:\"\\e063\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-head-side-virus\";a:2:{s:3:\"hex\";s:5:\"\\e064\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-heading\";a:2:{s:3:\"hex\";s:5:\"\\f1dc\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-headphones\";a:2:{s:3:\"hex\";s:5:\"\\f025\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-headphones-alt\";a:2:{s:3:\"hex\";s:5:\"\\f58f\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-headset\";a:2:{s:3:\"hex\";s:5:\"\\f590\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-heart\";a:2:{s:3:\"hex\";s:5:\"\\f004\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-heart-broken\";a:2:{s:3:\"hex\";s:5:\"\\f7a9\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-heartbeat\";a:2:{s:3:\"hex\";s:5:\"\\f21e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-helicopter\";a:2:{s:3:\"hex\";s:5:\"\\f533\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-highlighter\";a:2:{s:3:\"hex\";s:5:\"\\f591\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-hiking\";a:2:{s:3:\"hex\";s:5:\"\\f6ec\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-hippo\";a:2:{s:3:\"hex\";s:5:\"\\f6ed\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-history\";a:2:{s:3:\"hex\";s:5:\"\\f1da\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-hockey-puck\";a:2:{s:3:\"hex\";s:5:\"\\f453\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-holly-berry\";a:2:{s:3:\"hex\";s:5:\"\\f7aa\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-home\";a:2:{s:3:\"hex\";s:5:\"\\f015\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-horse\";a:2:{s:3:\"hex\";s:5:\"\\f6f0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-horse-head\";a:2:{s:3:\"hex\";s:5:\"\\f7ab\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-hospital\";a:2:{s:3:\"hex\";s:5:\"\\f0f8\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-hospital-alt\";a:2:{s:3:\"hex\";s:5:\"\\f47d\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-hospital-symbol\";a:2:{s:3:\"hex\";s:5:\"\\f47e\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-hospital-user\";a:2:{s:3:\"hex\";s:5:\"\\f80d\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-hot-tub\";a:2:{s:3:\"hex\";s:5:\"\\f593\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-hotdog\";a:2:{s:3:\"hex\";s:5:\"\\f80f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-hotel\";a:2:{s:3:\"hex\";s:5:\"\\f594\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-hourglass\";a:2:{s:3:\"hex\";s:5:\"\\f254\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-hourglass-end\";a:2:{s:3:\"hex\";s:5:\"\\f253\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-hourglass-half\";a:2:{s:3:\"hex\";s:5:\"\\f252\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-hourglass-start\";a:2:{s:3:\"hex\";s:5:\"\\f251\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-house-damage\";a:2:{s:3:\"hex\";s:5:\"\\f6f1\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-house-user\";a:2:{s:3:\"hex\";s:5:\"\\e065\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-hryvnia\";a:2:{s:3:\"hex\";s:5:\"\\f6f2\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-i-cursor\";a:2:{s:3:\"hex\";s:5:\"\\f246\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-ice-cream\";a:2:{s:3:\"hex\";s:5:\"\\f810\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-icicles\";a:2:{s:3:\"hex\";s:5:\"\\f7ad\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-icons\";a:2:{s:3:\"hex\";s:5:\"\\f86d\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-id-badge\";a:2:{s:3:\"hex\";s:5:\"\\f2c1\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-id-card\";a:2:{s:3:\"hex\";s:5:\"\\f2c2\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-id-card-alt\";a:2:{s:3:\"hex\";s:5:\"\\f47f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-igloo\";a:2:{s:3:\"hex\";s:5:\"\\f7ae\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-image\";a:2:{s:3:\"hex\";s:5:\"\\f03e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-images\";a:2:{s:3:\"hex\";s:5:\"\\f302\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-inbox\";a:2:{s:3:\"hex\";s:5:\"\\f01c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-indent\";a:2:{s:3:\"hex\";s:5:\"\\f03c\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-industry\";a:2:{s:3:\"hex\";s:5:\"\\f275\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-infinity\";a:2:{s:3:\"hex\";s:5:\"\\f534\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-info\";a:2:{s:3:\"hex\";s:5:\"\\f129\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-info-circle\";a:2:{s:3:\"hex\";s:5:\"\\f05a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-italic\";a:2:{s:3:\"hex\";s:5:\"\\f033\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-jedi\";a:2:{s:3:\"hex\";s:5:\"\\f669\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-joint\";a:2:{s:3:\"hex\";s:5:\"\\f595\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-journal-whills\";a:2:{s:3:\"hex\";s:5:\"\\f66a\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-kaaba\";a:2:{s:3:\"hex\";s:5:\"\\f66b\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-key\";a:2:{s:3:\"hex\";s:5:\"\\f084\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-keyboard\";a:2:{s:3:\"hex\";s:5:\"\\f11c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-khanda\";a:2:{s:3:\"hex\";s:5:\"\\f66d\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-kiss\";a:2:{s:3:\"hex\";s:5:\"\\f596\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-kiss-beam\";a:2:{s:3:\"hex\";s:5:\"\\f597\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-kiss-wink-heart\";a:2:{s:3:\"hex\";s:5:\"\\f598\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-kiwi-bird\";a:2:{s:3:\"hex\";s:5:\"\\f535\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-landmark\";a:2:{s:3:\"hex\";s:5:\"\\f66f\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-language\";a:2:{s:3:\"hex\";s:5:\"\\f1ab\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-laptop\";a:2:{s:3:\"hex\";s:5:\"\\f109\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-laptop-code\";a:2:{s:3:\"hex\";s:5:\"\\f5fc\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-laptop-house\";a:2:{s:3:\"hex\";s:5:\"\\e066\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-laptop-medical\";a:2:{s:3:\"hex\";s:5:\"\\f812\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-laugh\";a:2:{s:3:\"hex\";s:5:\"\\f599\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-laugh-beam\";a:2:{s:3:\"hex\";s:5:\"\\f59a\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-laugh-squint\";a:2:{s:3:\"hex\";s:5:\"\\f59b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-laugh-wink\";a:2:{s:3:\"hex\";s:5:\"\\f59c\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-layer-group\";a:2:{s:3:\"hex\";s:5:\"\\f5fd\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-leaf\";a:2:{s:3:\"hex\";s:5:\"\\f06c\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-lemon\";a:2:{s:3:\"hex\";s:5:\"\\f094\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-less-than\";a:2:{s:3:\"hex\";s:5:\"\\f536\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-less-than-equal\";a:2:{s:3:\"hex\";s:5:\"\\f537\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-level-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3be\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-level-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3bf\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-life-ring\";a:2:{s:3:\"hex\";s:5:\"\\f1cd\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-lightbulb\";a:2:{s:3:\"hex\";s:5:\"\\f0eb\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-link\";a:2:{s:3:\"hex\";s:5:\"\\f0c1\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-lira-sign\";a:2:{s:3:\"hex\";s:5:\"\\f195\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-list\";a:2:{s:3:\"hex\";s:5:\"\\f03a\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-list-alt\";a:2:{s:3:\"hex\";s:5:\"\\f022\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-list-ol\";a:2:{s:3:\"hex\";s:5:\"\\f0cb\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-list-ul\";a:2:{s:3:\"hex\";s:5:\"\\f0ca\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-location-arrow\";a:2:{s:3:\"hex\";s:5:\"\\f124\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-lock\";a:2:{s:3:\"hex\";s:5:\"\\f023\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-lock-open\";a:2:{s:3:\"hex\";s:5:\"\\f3c1\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-long-arrow-alt-down\";a:2:{s:3:\"hex\";s:5:\"\\f309\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-long-arrow-alt-left\";a:2:{s:3:\"hex\";s:5:\"\\f30a\";s:7:\"unicode\";s:8:\"\";}s:27:\"fas fa-long-arrow-alt-right\";a:2:{s:3:\"hex\";s:5:\"\\f30b\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-long-arrow-alt-up\";a:2:{s:3:\"hex\";s:5:\"\\f30c\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-low-vision\";a:2:{s:3:\"hex\";s:5:\"\\f2a8\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-luggage-cart\";a:2:{s:3:\"hex\";s:5:\"\\f59d\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-lungs\";a:2:{s:3:\"hex\";s:5:\"\\f604\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-lungs-virus\";a:2:{s:3:\"hex\";s:5:\"\\e067\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-magic\";a:2:{s:3:\"hex\";s:5:\"\\f0d0\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-magnet\";a:2:{s:3:\"hex\";s:5:\"\\f076\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-mail-bulk\";a:2:{s:3:\"hex\";s:5:\"\\f674\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-male\";a:2:{s:3:\"hex\";s:5:\"\\f183\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-map\";a:2:{s:3:\"hex\";s:5:\"\\f279\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-map-marked\";a:2:{s:3:\"hex\";s:5:\"\\f59f\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-map-marked-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5a0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-map-marker\";a:2:{s:3:\"hex\";s:5:\"\\f041\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-map-marker-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3c5\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-map-pin\";a:2:{s:3:\"hex\";s:5:\"\\f276\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-map-signs\";a:2:{s:3:\"hex\";s:5:\"\\f277\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-marker\";a:2:{s:3:\"hex\";s:5:\"\\f5a1\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-mars\";a:2:{s:3:\"hex\";s:5:\"\\f222\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-mars-double\";a:2:{s:3:\"hex\";s:5:\"\\f227\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-mars-stroke\";a:2:{s:3:\"hex\";s:5:\"\\f229\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-mars-stroke-h\";a:2:{s:3:\"hex\";s:5:\"\\f22b\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-mars-stroke-v\";a:2:{s:3:\"hex\";s:5:\"\\f22a\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-mask\";a:2:{s:3:\"hex\";s:5:\"\\f6fa\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-medal\";a:2:{s:3:\"hex\";s:5:\"\\f5a2\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-medkit\";a:2:{s:3:\"hex\";s:5:\"\\f0fa\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-meh\";a:2:{s:3:\"hex\";s:5:\"\\f11a\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-meh-blank\";a:2:{s:3:\"hex\";s:5:\"\\f5a4\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-meh-rolling-eyes\";a:2:{s:3:\"hex\";s:5:\"\\f5a5\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-memory\";a:2:{s:3:\"hex\";s:5:\"\\f538\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-menorah\";a:2:{s:3:\"hex\";s:5:\"\\f676\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-mercury\";a:2:{s:3:\"hex\";s:5:\"\\f223\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-meteor\";a:2:{s:3:\"hex\";s:5:\"\\f753\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-microchip\";a:2:{s:3:\"hex\";s:5:\"\\f2db\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-microphone\";a:2:{s:3:\"hex\";s:5:\"\\f130\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-microphone-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3c9\";s:7:\"unicode\";s:8:\"\";}s:27:\"fas fa-microphone-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\f539\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-microphone-slash\";a:2:{s:3:\"hex\";s:5:\"\\f131\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-microscope\";a:2:{s:3:\"hex\";s:5:\"\\f610\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-minus\";a:2:{s:3:\"hex\";s:5:\"\\f068\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-minus-circle\";a:2:{s:3:\"hex\";s:5:\"\\f056\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-minus-square\";a:2:{s:3:\"hex\";s:5:\"\\f146\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-mitten\";a:2:{s:3:\"hex\";s:5:\"\\f7b5\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-mobile\";a:2:{s:3:\"hex\";s:5:\"\\f10b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-mobile-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3cd\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-money-bill\";a:2:{s:3:\"hex\";s:5:\"\\f0d6\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-money-bill-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3d1\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-money-bill-wave\";a:2:{s:3:\"hex\";s:5:\"\\f53a\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-money-bill-wave-alt\";a:2:{s:3:\"hex\";s:5:\"\\f53b\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-money-check\";a:2:{s:3:\"hex\";s:5:\"\\f53c\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-money-check-alt\";a:2:{s:3:\"hex\";s:5:\"\\f53d\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-monument\";a:2:{s:3:\"hex\";s:5:\"\\f5a6\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-moon\";a:2:{s:3:\"hex\";s:5:\"\\f186\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-mortar-pestle\";a:2:{s:3:\"hex\";s:5:\"\\f5a7\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-mosque\";a:2:{s:3:\"hex\";s:5:\"\\f678\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-motorcycle\";a:2:{s:3:\"hex\";s:5:\"\\f21c\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-mountain\";a:2:{s:3:\"hex\";s:5:\"\\f6fc\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-mouse\";a:2:{s:3:\"hex\";s:5:\"\\f8cc\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-mouse-pointer\";a:2:{s:3:\"hex\";s:5:\"\\f245\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-mug-hot\";a:2:{s:3:\"hex\";s:5:\"\\f7b6\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-music\";a:2:{s:3:\"hex\";s:5:\"\\f001\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-network-wired\";a:2:{s:3:\"hex\";s:5:\"\\f6ff\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-neuter\";a:2:{s:3:\"hex\";s:5:\"\\f22c\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-newspaper\";a:2:{s:3:\"hex\";s:5:\"\\f1ea\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-not-equal\";a:2:{s:3:\"hex\";s:5:\"\\f53e\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-notes-medical\";a:2:{s:3:\"hex\";s:5:\"\\f481\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-object-group\";a:2:{s:3:\"hex\";s:5:\"\\f247\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-object-ungroup\";a:2:{s:3:\"hex\";s:5:\"\\f248\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-oil-can\";a:2:{s:3:\"hex\";s:5:\"\\f613\";s:7:\"unicode\";s:8:\"\";}s:9:\"fas fa-om\";a:2:{s:3:\"hex\";s:5:\"\\f679\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-otter\";a:2:{s:3:\"hex\";s:5:\"\\f700\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-outdent\";a:2:{s:3:\"hex\";s:5:\"\\f03b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-pager\";a:2:{s:3:\"hex\";s:5:\"\\f815\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-paint-brush\";a:2:{s:3:\"hex\";s:5:\"\\f1fc\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-paint-roller\";a:2:{s:3:\"hex\";s:5:\"\\f5aa\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-palette\";a:2:{s:3:\"hex\";s:5:\"\\f53f\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-pallet\";a:2:{s:3:\"hex\";s:5:\"\\f482\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-paper-plane\";a:2:{s:3:\"hex\";s:5:\"\\f1d8\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-paperclip\";a:2:{s:3:\"hex\";s:5:\"\\f0c6\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-parachute-box\";a:2:{s:3:\"hex\";s:5:\"\\f4cd\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-paragraph\";a:2:{s:3:\"hex\";s:5:\"\\f1dd\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-parking\";a:2:{s:3:\"hex\";s:5:\"\\f540\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-passport\";a:2:{s:3:\"hex\";s:5:\"\\f5ab\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-pastafarianism\";a:2:{s:3:\"hex\";s:5:\"\\f67b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-paste\";a:2:{s:3:\"hex\";s:5:\"\\f0ea\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-pause\";a:2:{s:3:\"hex\";s:5:\"\\f04c\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-pause-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28b\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-paw\";a:2:{s:3:\"hex\";s:5:\"\\f1b0\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-peace\";a:2:{s:3:\"hex\";s:5:\"\\f67c\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-pen\";a:2:{s:3:\"hex\";s:5:\"\\f304\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-pen-alt\";a:2:{s:3:\"hex\";s:5:\"\\f305\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-pen-fancy\";a:2:{s:3:\"hex\";s:5:\"\\f5ac\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-pen-nib\";a:2:{s:3:\"hex\";s:5:\"\\f5ad\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-pen-square\";a:2:{s:3:\"hex\";s:5:\"\\f14b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-pencil-alt\";a:2:{s:3:\"hex\";s:5:\"\\f303\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-pencil-ruler\";a:2:{s:3:\"hex\";s:5:\"\\f5ae\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-people-arrows\";a:2:{s:3:\"hex\";s:5:\"\\e068\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-people-carry\";a:2:{s:3:\"hex\";s:5:\"\\f4ce\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-pepper-hot\";a:2:{s:3:\"hex\";s:5:\"\\f816\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-percent\";a:2:{s:3:\"hex\";s:5:\"\\f295\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-percentage\";a:2:{s:3:\"hex\";s:5:\"\\f541\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-person-booth\";a:2:{s:3:\"hex\";s:5:\"\\f756\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-phone\";a:2:{s:3:\"hex\";s:5:\"\\f095\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-phone-alt\";a:2:{s:3:\"hex\";s:5:\"\\f879\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-phone-slash\";a:2:{s:3:\"hex\";s:5:\"\\f3dd\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-phone-square\";a:2:{s:3:\"hex\";s:5:\"\\f098\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-phone-square-alt\";a:2:{s:3:\"hex\";s:5:\"\\f87b\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-phone-volume\";a:2:{s:3:\"hex\";s:5:\"\\f2a0\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-photo-video\";a:2:{s:3:\"hex\";s:5:\"\\f87c\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-piggy-bank\";a:2:{s:3:\"hex\";s:5:\"\\f4d3\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-pills\";a:2:{s:3:\"hex\";s:5:\"\\f484\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-pizza-slice\";a:2:{s:3:\"hex\";s:5:\"\\f818\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-place-of-worship\";a:2:{s:3:\"hex\";s:5:\"\\f67f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-plane\";a:2:{s:3:\"hex\";s:5:\"\\f072\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-plane-arrival\";a:2:{s:3:\"hex\";s:5:\"\\f5af\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-plane-departure\";a:2:{s:3:\"hex\";s:5:\"\\f5b0\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-plane-slash\";a:2:{s:3:\"hex\";s:5:\"\\e069\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-play\";a:2:{s:3:\"hex\";s:5:\"\\f04b\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-play-circle\";a:2:{s:3:\"hex\";s:5:\"\\f144\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-plug\";a:2:{s:3:\"hex\";s:5:\"\\f1e6\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-plus\";a:2:{s:3:\"hex\";s:5:\"\\f067\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-plus-circle\";a:2:{s:3:\"hex\";s:5:\"\\f055\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-plus-square\";a:2:{s:3:\"hex\";s:5:\"\\f0fe\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-podcast\";a:2:{s:3:\"hex\";s:5:\"\\f2ce\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-poll\";a:2:{s:3:\"hex\";s:5:\"\\f681\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-poll-h\";a:2:{s:3:\"hex\";s:5:\"\\f682\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-poo\";a:2:{s:3:\"hex\";s:5:\"\\f2fe\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-poo-storm\";a:2:{s:3:\"hex\";s:5:\"\\f75a\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-poop\";a:2:{s:3:\"hex\";s:5:\"\\f619\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-portrait\";a:2:{s:3:\"hex\";s:5:\"\\f3e0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-pound-sign\";a:2:{s:3:\"hex\";s:5:\"\\f154\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-power-off\";a:2:{s:3:\"hex\";s:5:\"\\f011\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-pray\";a:2:{s:3:\"hex\";s:5:\"\\f683\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-praying-hands\";a:2:{s:3:\"hex\";s:5:\"\\f684\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-prescription\";a:2:{s:3:\"hex\";s:5:\"\\f5b1\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-prescription-bottle\";a:2:{s:3:\"hex\";s:5:\"\\f485\";s:7:\"unicode\";s:8:\"\";}s:30:\"fas fa-prescription-bottle-alt\";a:2:{s:3:\"hex\";s:5:\"\\f486\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-print\";a:2:{s:3:\"hex\";s:5:\"\\f02f\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-procedures\";a:2:{s:3:\"hex\";s:5:\"\\f487\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-project-diagram\";a:2:{s:3:\"hex\";s:5:\"\\f542\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-pump-medical\";a:2:{s:3:\"hex\";s:5:\"\\e06a\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-pump-soap\";a:2:{s:3:\"hex\";s:5:\"\\e06b\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-puzzle-piece\";a:2:{s:3:\"hex\";s:5:\"\\f12e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-qrcode\";a:2:{s:3:\"hex\";s:5:\"\\f029\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-question\";a:2:{s:3:\"hex\";s:5:\"\\f128\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-question-circle\";a:2:{s:3:\"hex\";s:5:\"\\f059\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-quidditch\";a:2:{s:3:\"hex\";s:5:\"\\f458\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-quote-left\";a:2:{s:3:\"hex\";s:5:\"\\f10d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-quote-right\";a:2:{s:3:\"hex\";s:5:\"\\f10e\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-quran\";a:2:{s:3:\"hex\";s:5:\"\\f687\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-radiation\";a:2:{s:3:\"hex\";s:5:\"\\f7b9\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-radiation-alt\";a:2:{s:3:\"hex\";s:5:\"\\f7ba\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-rainbow\";a:2:{s:3:\"hex\";s:5:\"\\f75b\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-random\";a:2:{s:3:\"hex\";s:5:\"\\f074\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-receipt\";a:2:{s:3:\"hex\";s:5:\"\\f543\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-record-vinyl\";a:2:{s:3:\"hex\";s:5:\"\\f8d9\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-recycle\";a:2:{s:3:\"hex\";s:5:\"\\f1b8\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-redo\";a:2:{s:3:\"hex\";s:5:\"\\f01e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-redo-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f9\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-registered\";a:2:{s:3:\"hex\";s:5:\"\\f25d\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-remove-format\";a:2:{s:3:\"hex\";s:5:\"\\f87d\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-reply\";a:2:{s:3:\"hex\";s:5:\"\\f3e5\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-reply-all\";a:2:{s:3:\"hex\";s:5:\"\\f122\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-republican\";a:2:{s:3:\"hex\";s:5:\"\\f75e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-restroom\";a:2:{s:3:\"hex\";s:5:\"\\f7bd\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-retweet\";a:2:{s:3:\"hex\";s:5:\"\\f079\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-ribbon\";a:2:{s:3:\"hex\";s:5:\"\\f4d6\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-ring\";a:2:{s:3:\"hex\";s:5:\"\\f70b\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-road\";a:2:{s:3:\"hex\";s:5:\"\\f018\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-robot\";a:2:{s:3:\"hex\";s:5:\"\\f544\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-rocket\";a:2:{s:3:\"hex\";s:5:\"\\f135\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-route\";a:2:{s:3:\"hex\";s:5:\"\\f4d7\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-rss\";a:2:{s:3:\"hex\";s:5:\"\\f09e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-rss-square\";a:2:{s:3:\"hex\";s:5:\"\\f143\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-ruble-sign\";a:2:{s:3:\"hex\";s:5:\"\\f158\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-ruler\";a:2:{s:3:\"hex\";s:5:\"\\f545\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-ruler-combined\";a:2:{s:3:\"hex\";s:5:\"\\f546\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-ruler-horizontal\";a:2:{s:3:\"hex\";s:5:\"\\f547\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-ruler-vertical\";a:2:{s:3:\"hex\";s:5:\"\\f548\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-running\";a:2:{s:3:\"hex\";s:5:\"\\f70c\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-rupee-sign\";a:2:{s:3:\"hex\";s:5:\"\\f156\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-sad-cry\";a:2:{s:3:\"hex\";s:5:\"\\f5b3\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-sad-tear\";a:2:{s:3:\"hex\";s:5:\"\\f5b4\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-satellite\";a:2:{s:3:\"hex\";s:5:\"\\f7bf\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-satellite-dish\";a:2:{s:3:\"hex\";s:5:\"\\f7c0\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-save\";a:2:{s:3:\"hex\";s:5:\"\\f0c7\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-school\";a:2:{s:3:\"hex\";s:5:\"\\f549\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-screwdriver\";a:2:{s:3:\"hex\";s:5:\"\\f54a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-scroll\";a:2:{s:3:\"hex\";s:5:\"\\f70e\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-sd-card\";a:2:{s:3:\"hex\";s:5:\"\\f7c2\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-search\";a:2:{s:3:\"hex\";s:5:\"\\f002\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-search-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f688\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-search-location\";a:2:{s:3:\"hex\";s:5:\"\\f689\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-search-minus\";a:2:{s:3:\"hex\";s:5:\"\\f010\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-search-plus\";a:2:{s:3:\"hex\";s:5:\"\\f00e\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-seedling\";a:2:{s:3:\"hex\";s:5:\"\\f4d8\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-server\";a:2:{s:3:\"hex\";s:5:\"\\f233\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-shapes\";a:2:{s:3:\"hex\";s:5:\"\\f61f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-share\";a:2:{s:3:\"hex\";s:5:\"\\f064\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-share-alt\";a:2:{s:3:\"hex\";s:5:\"\\f1e0\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-share-alt-square\";a:2:{s:3:\"hex\";s:5:\"\\f1e1\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-share-square\";a:2:{s:3:\"hex\";s:5:\"\\f14d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-shekel-sign\";a:2:{s:3:\"hex\";s:5:\"\\f20b\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-shield-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3ed\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-shield-virus\";a:2:{s:3:\"hex\";s:5:\"\\e06c\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-ship\";a:2:{s:3:\"hex\";s:5:\"\\f21a\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-shipping-fast\";a:2:{s:3:\"hex\";s:5:\"\\f48b\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-shoe-prints\";a:2:{s:3:\"hex\";s:5:\"\\f54b\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-shopping-bag\";a:2:{s:3:\"hex\";s:5:\"\\f290\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-shopping-basket\";a:2:{s:3:\"hex\";s:5:\"\\f291\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-shopping-cart\";a:2:{s:3:\"hex\";s:5:\"\\f07a\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-shower\";a:2:{s:3:\"hex\";s:5:\"\\f2cc\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-shuttle-van\";a:2:{s:3:\"hex\";s:5:\"\\f5b6\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-sign\";a:2:{s:3:\"hex\";s:5:\"\\f4d9\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-sign-in-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f6\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-sign-language\";a:2:{s:3:\"hex\";s:5:\"\\f2a7\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-sign-out-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f5\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-signal\";a:2:{s:3:\"hex\";s:5:\"\\f012\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-signature\";a:2:{s:3:\"hex\";s:5:\"\\f5b7\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-sim-card\";a:2:{s:3:\"hex\";s:5:\"\\f7c4\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-sink\";a:2:{s:3:\"hex\";s:5:\"\\e06d\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-sitemap\";a:2:{s:3:\"hex\";s:5:\"\\f0e8\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-skating\";a:2:{s:3:\"hex\";s:5:\"\\f7c5\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-skiing\";a:2:{s:3:\"hex\";s:5:\"\\f7c9\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-skiing-nordic\";a:2:{s:3:\"hex\";s:5:\"\\f7ca\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-skull\";a:2:{s:3:\"hex\";s:5:\"\\f54c\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-skull-crossbones\";a:2:{s:3:\"hex\";s:5:\"\\f714\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-slash\";a:2:{s:3:\"hex\";s:5:\"\\f715\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-sleigh\";a:2:{s:3:\"hex\";s:5:\"\\f7cc\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-sliders-h\";a:2:{s:3:\"hex\";s:5:\"\\f1de\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-smile\";a:2:{s:3:\"hex\";s:5:\"\\f118\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-smile-beam\";a:2:{s:3:\"hex\";s:5:\"\\f5b8\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-smile-wink\";a:2:{s:3:\"hex\";s:5:\"\\f4da\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-smog\";a:2:{s:3:\"hex\";s:5:\"\\f75f\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-smoking\";a:2:{s:3:\"hex\";s:5:\"\\f48d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-smoking-ban\";a:2:{s:3:\"hex\";s:5:\"\\f54d\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-sms\";a:2:{s:3:\"hex\";s:5:\"\\f7cd\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-snowboarding\";a:2:{s:3:\"hex\";s:5:\"\\f7ce\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-snowflake\";a:2:{s:3:\"hex\";s:5:\"\\f2dc\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-snowman\";a:2:{s:3:\"hex\";s:5:\"\\f7d0\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-snowplow\";a:2:{s:3:\"hex\";s:5:\"\\f7d2\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-soap\";a:2:{s:3:\"hex\";s:5:\"\\e06e\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-socks\";a:2:{s:3:\"hex\";s:5:\"\\f696\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-solar-panel\";a:2:{s:3:\"hex\";s:5:\"\\f5ba\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-sort\";a:2:{s:3:\"hex\";s:5:\"\\f0dc\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-sort-alpha-down\";a:2:{s:3:\"hex\";s:5:\"\\f15d\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-sort-alpha-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f881\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-sort-alpha-up\";a:2:{s:3:\"hex\";s:5:\"\\f15e\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-sort-alpha-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f882\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-sort-amount-down\";a:2:{s:3:\"hex\";s:5:\"\\f160\";s:7:\"unicode\";s:8:\"\";}s:27:\"fas fa-sort-amount-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f884\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-sort-amount-up\";a:2:{s:3:\"hex\";s:5:\"\\f161\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-sort-amount-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f885\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-sort-down\";a:2:{s:3:\"hex\";s:5:\"\\f0dd\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-sort-numeric-down\";a:2:{s:3:\"hex\";s:5:\"\\f162\";s:7:\"unicode\";s:8:\"\";}s:28:\"fas fa-sort-numeric-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f886\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-sort-numeric-up\";a:2:{s:3:\"hex\";s:5:\"\\f163\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-sort-numeric-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f887\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-sort-up\";a:2:{s:3:\"hex\";s:5:\"\\f0de\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-spa\";a:2:{s:3:\"hex\";s:5:\"\\f5bb\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-space-shuttle\";a:2:{s:3:\"hex\";s:5:\"\\f197\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-spell-check\";a:2:{s:3:\"hex\";s:5:\"\\f891\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-spider\";a:2:{s:3:\"hex\";s:5:\"\\f717\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-spinner\";a:2:{s:3:\"hex\";s:5:\"\\f110\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-splotch\";a:2:{s:3:\"hex\";s:5:\"\\f5bc\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-spray-can\";a:2:{s:3:\"hex\";s:5:\"\\f5bd\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-square\";a:2:{s:3:\"hex\";s:5:\"\\f0c8\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-square-full\";a:2:{s:3:\"hex\";s:5:\"\\f45c\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-square-root-alt\";a:2:{s:3:\"hex\";s:5:\"\\f698\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-stamp\";a:2:{s:3:\"hex\";s:5:\"\\f5bf\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-star\";a:2:{s:3:\"hex\";s:5:\"\\f005\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-star-and-crescent\";a:2:{s:3:\"hex\";s:5:\"\\f699\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-star-half\";a:2:{s:3:\"hex\";s:5:\"\\f089\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-star-half-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5c0\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-star-of-david\";a:2:{s:3:\"hex\";s:5:\"\\f69a\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-star-of-life\";a:2:{s:3:\"hex\";s:5:\"\\f621\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-step-backward\";a:2:{s:3:\"hex\";s:5:\"\\f048\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-step-forward\";a:2:{s:3:\"hex\";s:5:\"\\f051\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-stethoscope\";a:2:{s:3:\"hex\";s:5:\"\\f0f1\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-sticky-note\";a:2:{s:3:\"hex\";s:5:\"\\f249\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-stop\";a:2:{s:3:\"hex\";s:5:\"\\f04d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-stop-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28d\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-stopwatch\";a:2:{s:3:\"hex\";s:5:\"\\f2f2\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-stopwatch-20\";a:2:{s:3:\"hex\";s:5:\"\\e06f\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-store\";a:2:{s:3:\"hex\";s:5:\"\\f54e\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-store-alt\";a:2:{s:3:\"hex\";s:5:\"\\f54f\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-store-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\e070\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-store-slash\";a:2:{s:3:\"hex\";s:5:\"\\e071\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-stream\";a:2:{s:3:\"hex\";s:5:\"\\f550\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-street-view\";a:2:{s:3:\"hex\";s:5:\"\\f21d\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-strikethrough\";a:2:{s:3:\"hex\";s:5:\"\\f0cc\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-stroopwafel\";a:2:{s:3:\"hex\";s:5:\"\\f551\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-subscript\";a:2:{s:3:\"hex\";s:5:\"\\f12c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-subway\";a:2:{s:3:\"hex\";s:5:\"\\f239\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-suitcase\";a:2:{s:3:\"hex\";s:5:\"\\f0f2\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-suitcase-rolling\";a:2:{s:3:\"hex\";s:5:\"\\f5c1\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-sun\";a:2:{s:3:\"hex\";s:5:\"\\f185\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-superscript\";a:2:{s:3:\"hex\";s:5:\"\\f12b\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-surprise\";a:2:{s:3:\"hex\";s:5:\"\\f5c2\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-swatchbook\";a:2:{s:3:\"hex\";s:5:\"\\f5c3\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-swimmer\";a:2:{s:3:\"hex\";s:5:\"\\f5c4\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-swimming-pool\";a:2:{s:3:\"hex\";s:5:\"\\f5c5\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-synagogue\";a:2:{s:3:\"hex\";s:5:\"\\f69b\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-sync\";a:2:{s:3:\"hex\";s:5:\"\\f021\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-sync-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f1\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-syringe\";a:2:{s:3:\"hex\";s:5:\"\\f48e\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-table\";a:2:{s:3:\"hex\";s:5:\"\\f0ce\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-table-tennis\";a:2:{s:3:\"hex\";s:5:\"\\f45d\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-tablet\";a:2:{s:3:\"hex\";s:5:\"\\f10a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-tablet-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3fa\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-tablets\";a:2:{s:3:\"hex\";s:5:\"\\f490\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-tachometer-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3fd\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-tag\";a:2:{s:3:\"hex\";s:5:\"\\f02b\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-tags\";a:2:{s:3:\"hex\";s:5:\"\\f02c\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-tape\";a:2:{s:3:\"hex\";s:5:\"\\f4db\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-tasks\";a:2:{s:3:\"hex\";s:5:\"\\f0ae\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-taxi\";a:2:{s:3:\"hex\";s:5:\"\\f1ba\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-teeth\";a:2:{s:3:\"hex\";s:5:\"\\f62e\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-teeth-open\";a:2:{s:3:\"hex\";s:5:\"\\f62f\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-temperature-high\";a:2:{s:3:\"hex\";s:5:\"\\f769\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-temperature-low\";a:2:{s:3:\"hex\";s:5:\"\\f76b\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-tenge\";a:2:{s:3:\"hex\";s:5:\"\\f7d7\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-terminal\";a:2:{s:3:\"hex\";s:5:\"\\f120\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-text-height\";a:2:{s:3:\"hex\";s:5:\"\\f034\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-text-width\";a:2:{s:3:\"hex\";s:5:\"\\f035\";s:7:\"unicode\";s:8:\"\";}s:9:\"fas fa-th\";a:2:{s:3:\"hex\";s:5:\"\\f00a\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-th-large\";a:2:{s:3:\"hex\";s:5:\"\\f009\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-th-list\";a:2:{s:3:\"hex\";s:5:\"\\f00b\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-theater-masks\";a:2:{s:3:\"hex\";s:5:\"\\f630\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-thermometer\";a:2:{s:3:\"hex\";s:5:\"\\f491\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-thermometer-empty\";a:2:{s:3:\"hex\";s:5:\"\\f2cb\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-thermometer-full\";a:2:{s:3:\"hex\";s:5:\"\\f2c7\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-thermometer-half\";a:2:{s:3:\"hex\";s:5:\"\\f2c9\";s:7:\"unicode\";s:8:\"\";}s:26:\"fas fa-thermometer-quarter\";a:2:{s:3:\"hex\";s:5:\"\\f2ca\";s:7:\"unicode\";s:8:\"\";}s:33:\"fas fa-thermometer-three-quarters\";a:2:{s:3:\"hex\";s:5:\"\\f2c8\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-thumbs-down\";a:2:{s:3:\"hex\";s:5:\"\\f165\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-thumbs-up\";a:2:{s:3:\"hex\";s:5:\"\\f164\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-thumbtack\";a:2:{s:3:\"hex\";s:5:\"\\f08d\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-ticket-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3ff\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-times\";a:2:{s:3:\"hex\";s:5:\"\\f00d\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-times-circle\";a:2:{s:3:\"hex\";s:5:\"\\f057\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-tint\";a:2:{s:3:\"hex\";s:5:\"\\f043\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-tint-slash\";a:2:{s:3:\"hex\";s:5:\"\\f5c7\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-tired\";a:2:{s:3:\"hex\";s:5:\"\\f5c8\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-toggle-off\";a:2:{s:3:\"hex\";s:5:\"\\f204\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-toggle-on\";a:2:{s:3:\"hex\";s:5:\"\\f205\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-toilet\";a:2:{s:3:\"hex\";s:5:\"\\f7d8\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-toilet-paper\";a:2:{s:3:\"hex\";s:5:\"\\f71e\";s:7:\"unicode\";s:8:\"\";}s:25:\"fas fa-toilet-paper-slash\";a:2:{s:3:\"hex\";s:5:\"\\e072\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-toolbox\";a:2:{s:3:\"hex\";s:5:\"\\f552\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-tools\";a:2:{s:3:\"hex\";s:5:\"\\f7d9\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-tooth\";a:2:{s:3:\"hex\";s:5:\"\\f5c9\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-torah\";a:2:{s:3:\"hex\";s:5:\"\\f6a0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-torii-gate\";a:2:{s:3:\"hex\";s:5:\"\\f6a1\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-tractor\";a:2:{s:3:\"hex\";s:5:\"\\f722\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-trademark\";a:2:{s:3:\"hex\";s:5:\"\\f25c\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-traffic-light\";a:2:{s:3:\"hex\";s:5:\"\\f637\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-trailer\";a:2:{s:3:\"hex\";s:5:\"\\e041\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-train\";a:2:{s:3:\"hex\";s:5:\"\\f238\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-tram\";a:2:{s:3:\"hex\";s:5:\"\\f7da\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-transgender\";a:2:{s:3:\"hex\";s:5:\"\\f224\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-transgender-alt\";a:2:{s:3:\"hex\";s:5:\"\\f225\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-trash\";a:2:{s:3:\"hex\";s:5:\"\\f1f8\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-trash-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2ed\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-trash-restore\";a:2:{s:3:\"hex\";s:5:\"\\f829\";s:7:\"unicode\";s:8:\"\";}s:24:\"fas fa-trash-restore-alt\";a:2:{s:3:\"hex\";s:5:\"\\f82a\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-tree\";a:2:{s:3:\"hex\";s:5:\"\\f1bb\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-trophy\";a:2:{s:3:\"hex\";s:5:\"\\f091\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-truck\";a:2:{s:3:\"hex\";s:5:\"\\f0d1\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-truck-loading\";a:2:{s:3:\"hex\";s:5:\"\\f4de\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-truck-monster\";a:2:{s:3:\"hex\";s:5:\"\\f63b\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-truck-moving\";a:2:{s:3:\"hex\";s:5:\"\\f4df\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-truck-pickup\";a:2:{s:3:\"hex\";s:5:\"\\f63c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-tshirt\";a:2:{s:3:\"hex\";s:5:\"\\f553\";s:7:\"unicode\";s:8:\"\";}s:10:\"fas fa-tty\";a:2:{s:3:\"hex\";s:5:\"\\f1e4\";s:7:\"unicode\";s:8:\"\";}s:9:\"fas fa-tv\";a:2:{s:3:\"hex\";s:5:\"\\f26c\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-umbrella\";a:2:{s:3:\"hex\";s:5:\"\\f0e9\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-umbrella-beach\";a:2:{s:3:\"hex\";s:5:\"\\f5ca\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-underline\";a:2:{s:3:\"hex\";s:5:\"\\f0cd\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-undo\";a:2:{s:3:\"hex\";s:5:\"\\f0e2\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-undo-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2ea\";s:7:\"unicode\";s:8:\"\";}s:23:\"fas fa-universal-access\";a:2:{s:3:\"hex\";s:5:\"\\f29a\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-university\";a:2:{s:3:\"hex\";s:5:\"\\f19c\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-unlink\";a:2:{s:3:\"hex\";s:5:\"\\f127\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-unlock\";a:2:{s:3:\"hex\";s:5:\"\\f09c\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-unlock-alt\";a:2:{s:3:\"hex\";s:5:\"\\f13e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-upload\";a:2:{s:3:\"hex\";s:5:\"\\f093\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-user\";a:2:{s:3:\"hex\";s:5:\"\\f007\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-user-alt\";a:2:{s:3:\"hex\";s:5:\"\\f406\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-user-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\f4fa\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-user-astronaut\";a:2:{s:3:\"hex\";s:5:\"\\f4fb\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-check\";a:2:{s:3:\"hex\";s:5:\"\\f4fc\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-user-circle\";a:2:{s:3:\"hex\";s:5:\"\\f2bd\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-clock\";a:2:{s:3:\"hex\";s:5:\"\\f4fd\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-user-cog\";a:2:{s:3:\"hex\";s:5:\"\\f4fe\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-user-edit\";a:2:{s:3:\"hex\";s:5:\"\\f4ff\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-user-friends\";a:2:{s:3:\"hex\";s:5:\"\\f500\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-user-graduate\";a:2:{s:3:\"hex\";s:5:\"\\f501\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-user-injured\";a:2:{s:3:\"hex\";s:5:\"\\f728\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-user-lock\";a:2:{s:3:\"hex\";s:5:\"\\f502\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-user-md\";a:2:{s:3:\"hex\";s:5:\"\\f0f0\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-minus\";a:2:{s:3:\"hex\";s:5:\"\\f503\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-ninja\";a:2:{s:3:\"hex\";s:5:\"\\f504\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-nurse\";a:2:{s:3:\"hex\";s:5:\"\\f82f\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-user-plus\";a:2:{s:3:\"hex\";s:5:\"\\f234\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-user-secret\";a:2:{s:3:\"hex\";s:5:\"\\f21b\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-user-shield\";a:2:{s:3:\"hex\";s:5:\"\\f505\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-slash\";a:2:{s:3:\"hex\";s:5:\"\\f506\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-user-tag\";a:2:{s:3:\"hex\";s:5:\"\\f507\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-user-tie\";a:2:{s:3:\"hex\";s:5:\"\\f508\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-user-times\";a:2:{s:3:\"hex\";s:5:\"\\f235\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-users\";a:2:{s:3:\"hex\";s:5:\"\\f0c0\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-users-cog\";a:2:{s:3:\"hex\";s:5:\"\\f509\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-users-slash\";a:2:{s:3:\"hex\";s:5:\"\\e073\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-utensil-spoon\";a:2:{s:3:\"hex\";s:5:\"\\f2e5\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-utensils\";a:2:{s:3:\"hex\";s:5:\"\\f2e7\";s:7:\"unicode\";s:8:\"\";}s:20:\"fas fa-vector-square\";a:2:{s:3:\"hex\";s:5:\"\\f5cb\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-venus\";a:2:{s:3:\"hex\";s:5:\"\\f221\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-venus-double\";a:2:{s:3:\"hex\";s:5:\"\\f226\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-venus-mars\";a:2:{s:3:\"hex\";s:5:\"\\f228\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-vest\";a:2:{s:3:\"hex\";s:5:\"\\e085\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-vest-patches\";a:2:{s:3:\"hex\";s:5:\"\\e086\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-vial\";a:2:{s:3:\"hex\";s:5:\"\\f492\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-vials\";a:2:{s:3:\"hex\";s:5:\"\\f493\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-video\";a:2:{s:3:\"hex\";s:5:\"\\f03d\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-video-slash\";a:2:{s:3:\"hex\";s:5:\"\\f4e2\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-vihara\";a:2:{s:3:\"hex\";s:5:\"\\f6a7\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-virus\";a:2:{s:3:\"hex\";s:5:\"\\e074\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-virus-slash\";a:2:{s:3:\"hex\";s:5:\"\\e075\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-viruses\";a:2:{s:3:\"hex\";s:5:\"\\e076\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-voicemail\";a:2:{s:3:\"hex\";s:5:\"\\f897\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-volleyball-ball\";a:2:{s:3:\"hex\";s:5:\"\\f45f\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-volume-down\";a:2:{s:3:\"hex\";s:5:\"\\f027\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-volume-mute\";a:2:{s:3:\"hex\";s:5:\"\\f6a9\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-volume-off\";a:2:{s:3:\"hex\";s:5:\"\\f026\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-volume-up\";a:2:{s:3:\"hex\";s:5:\"\\f028\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-vote-yea\";a:2:{s:3:\"hex\";s:5:\"\\f772\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-vr-cardboard\";a:2:{s:3:\"hex\";s:5:\"\\f729\";s:7:\"unicode\";s:8:\"\";}s:14:\"fas fa-walking\";a:2:{s:3:\"hex\";s:5:\"\\f554\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-wallet\";a:2:{s:3:\"hex\";s:5:\"\\f555\";s:7:\"unicode\";s:8:\"\";}s:16:\"fas fa-warehouse\";a:2:{s:3:\"hex\";s:5:\"\\f494\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-water\";a:2:{s:3:\"hex\";s:5:\"\\f773\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-wave-square\";a:2:{s:3:\"hex\";s:5:\"\\f83e\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-weight\";a:2:{s:3:\"hex\";s:5:\"\\f496\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-weight-hanging\";a:2:{s:3:\"hex\";s:5:\"\\f5cd\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-wheelchair\";a:2:{s:3:\"hex\";s:5:\"\\f193\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-wifi\";a:2:{s:3:\"hex\";s:5:\"\\f1eb\";s:7:\"unicode\";s:8:\"\";}s:11:\"fas fa-wind\";a:2:{s:3:\"hex\";s:5:\"\\f72e\";s:7:\"unicode\";s:8:\"\";}s:19:\"fas fa-window-close\";a:2:{s:3:\"hex\";s:5:\"\\f410\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-window-maximize\";a:2:{s:3:\"hex\";s:5:\"\\f2d0\";s:7:\"unicode\";s:8:\"\";}s:22:\"fas fa-window-minimize\";a:2:{s:3:\"hex\";s:5:\"\\f2d1\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-window-restore\";a:2:{s:3:\"hex\";s:5:\"\\f2d2\";s:7:\"unicode\";s:8:\"\";}s:18:\"fas fa-wine-bottle\";a:2:{s:3:\"hex\";s:5:\"\\f72f\";s:7:\"unicode\";s:8:\"\";}s:17:\"fas fa-wine-glass\";a:2:{s:3:\"hex\";s:5:\"\\f4e3\";s:7:\"unicode\";s:8:\"\";}s:21:\"fas fa-wine-glass-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5ce\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-won-sign\";a:2:{s:3:\"hex\";s:5:\"\\f159\";s:7:\"unicode\";s:8:\"\";}s:13:\"fas fa-wrench\";a:2:{s:3:\"hex\";s:5:\"\\f0ad\";s:7:\"unicode\";s:8:\"\";}s:12:\"fas fa-x-ray\";a:2:{s:3:\"hex\";s:5:\"\\f497\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-yen-sign\";a:2:{s:3:\"hex\";s:5:\"\\f157\";s:7:\"unicode\";s:8:\"\";}s:15:\"fas fa-yin-yang\";a:2:{s:3:\"hex\";s:5:\"\\f6ad\";s:7:\"unicode\";s:8:\"\";}}s:3:\"far\";a:152:{s:19:\"far fa-address-book\";a:2:{s:3:\"hex\";s:5:\"\\f2b9\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-address-card\";a:2:{s:3:\"hex\";s:5:\"\\f2bb\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-angry\";a:2:{s:3:\"hex\";s:5:\"\\f556\";s:7:\"unicode\";s:8:\"\";}s:28:\"far fa-arrow-alt-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f358\";s:7:\"unicode\";s:8:\"\";}s:28:\"far fa-arrow-alt-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f359\";s:7:\"unicode\";s:8:\"\";}s:29:\"far fa-arrow-alt-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f35a\";s:7:\"unicode\";s:8:\"\";}s:26:\"far fa-arrow-alt-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f35b\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-bell\";a:2:{s:3:\"hex\";s:5:\"\\f0f3\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-bell-slash\";a:2:{s:3:\"hex\";s:5:\"\\f1f6\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-bookmark\";a:2:{s:3:\"hex\";s:5:\"\\f02e\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-building\";a:2:{s:3:\"hex\";s:5:\"\\f1ad\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-calendar\";a:2:{s:3:\"hex\";s:5:\"\\f133\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-calendar-alt\";a:2:{s:3:\"hex\";s:5:\"\\f073\";s:7:\"unicode\";s:8:\"\";}s:21:\"far fa-calendar-check\";a:2:{s:3:\"hex\";s:5:\"\\f274\";s:7:\"unicode\";s:8:\"\";}s:21:\"far fa-calendar-minus\";a:2:{s:3:\"hex\";s:5:\"\\f272\";s:7:\"unicode\";s:8:\"\";}s:20:\"far fa-calendar-plus\";a:2:{s:3:\"hex\";s:5:\"\\f271\";s:7:\"unicode\";s:8:\"\";}s:21:\"far fa-calendar-times\";a:2:{s:3:\"hex\";s:5:\"\\f273\";s:7:\"unicode\";s:8:\"\";}s:24:\"far fa-caret-square-down\";a:2:{s:3:\"hex\";s:5:\"\\f150\";s:7:\"unicode\";s:8:\"\";}s:24:\"far fa-caret-square-left\";a:2:{s:3:\"hex\";s:5:\"\\f191\";s:7:\"unicode\";s:8:\"\";}s:25:\"far fa-caret-square-right\";a:2:{s:3:\"hex\";s:5:\"\\f152\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-caret-square-up\";a:2:{s:3:\"hex\";s:5:\"\\f151\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-chart-bar\";a:2:{s:3:\"hex\";s:5:\"\\f080\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-check-circle\";a:2:{s:3:\"hex\";s:5:\"\\f058\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-check-square\";a:2:{s:3:\"hex\";s:5:\"\\f14a\";s:7:\"unicode\";s:8:\"\";}s:13:\"far fa-circle\";a:2:{s:3:\"hex\";s:5:\"\\f111\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-clipboard\";a:2:{s:3:\"hex\";s:5:\"\\f328\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-clock\";a:2:{s:3:\"hex\";s:5:\"\\f017\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-clone\";a:2:{s:3:\"hex\";s:5:\"\\f24d\";s:7:\"unicode\";s:8:\"\";}s:24:\"far fa-closed-captioning\";a:2:{s:3:\"hex\";s:5:\"\\f20a\";s:7:\"unicode\";s:8:\"\";}s:14:\"far fa-comment\";a:2:{s:3:\"hex\";s:5:\"\\f075\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-comment-alt\";a:2:{s:3:\"hex\";s:5:\"\\f27a\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-comment-dots\";a:2:{s:3:\"hex\";s:5:\"\\f4ad\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-comments\";a:2:{s:3:\"hex\";s:5:\"\\f086\";s:7:\"unicode\";s:8:\"\";}s:14:\"far fa-compass\";a:2:{s:3:\"hex\";s:5:\"\\f14e\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-copy\";a:2:{s:3:\"hex\";s:5:\"\\f0c5\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-copyright\";a:2:{s:3:\"hex\";s:5:\"\\f1f9\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-credit-card\";a:2:{s:3:\"hex\";s:5:\"\\f09d\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-dizzy\";a:2:{s:3:\"hex\";s:5:\"\\f567\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-dot-circle\";a:2:{s:3:\"hex\";s:5:\"\\f192\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-edit\";a:2:{s:3:\"hex\";s:5:\"\\f044\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-envelope\";a:2:{s:3:\"hex\";s:5:\"\\f0e0\";s:7:\"unicode\";s:8:\"\";}s:20:\"far fa-envelope-open\";a:2:{s:3:\"hex\";s:5:\"\\f2b6\";s:7:\"unicode\";s:8:\"\";}s:10:\"far fa-eye\";a:2:{s:3:\"hex\";s:5:\"\\f06e\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-eye-slash\";a:2:{s:3:\"hex\";s:5:\"\\f070\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-file\";a:2:{s:3:\"hex\";s:5:\"\\f15b\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-file-alt\";a:2:{s:3:\"hex\";s:5:\"\\f15c\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-file-archive\";a:2:{s:3:\"hex\";s:5:\"\\f1c6\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-file-audio\";a:2:{s:3:\"hex\";s:5:\"\\f1c7\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-file-code\";a:2:{s:3:\"hex\";s:5:\"\\f1c9\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-file-excel\";a:2:{s:3:\"hex\";s:5:\"\\f1c3\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-file-image\";a:2:{s:3:\"hex\";s:5:\"\\f1c5\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-file-pdf\";a:2:{s:3:\"hex\";s:5:\"\\f1c1\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-file-powerpoint\";a:2:{s:3:\"hex\";s:5:\"\\f1c4\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-file-video\";a:2:{s:3:\"hex\";s:5:\"\\f1c8\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-file-word\";a:2:{s:3:\"hex\";s:5:\"\\f1c2\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-flag\";a:2:{s:3:\"hex\";s:5:\"\\f024\";s:7:\"unicode\";s:8:\"\";}s:14:\"far fa-flushed\";a:2:{s:3:\"hex\";s:5:\"\\f579\";s:7:\"unicode\";s:8:\"\";}s:13:\"far fa-folder\";a:2:{s:3:\"hex\";s:5:\"\\f07b\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-folder-open\";a:2:{s:3:\"hex\";s:5:\"\\f07c\";s:7:\"unicode\";s:8:\"\";}s:29:\"far fa-font-awesome-logo-full\";a:2:{s:3:\"hex\";s:5:\"\\f4e6\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-frown\";a:2:{s:3:\"hex\";s:5:\"\\f119\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-frown-open\";a:2:{s:3:\"hex\";s:5:\"\\f57a\";s:7:\"unicode\";s:8:\"\";}s:13:\"far fa-futbol\";a:2:{s:3:\"hex\";s:5:\"\\f1e3\";s:7:\"unicode\";s:8:\"\";}s:10:\"far fa-gem\";a:2:{s:3:\"hex\";s:5:\"\\f3a5\";s:7:\"unicode\";s:8:\"\";}s:14:\"far fa-grimace\";a:2:{s:3:\"hex\";s:5:\"\\f57f\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-grin\";a:2:{s:3:\"hex\";s:5:\"\\f580\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-grin-alt\";a:2:{s:3:\"hex\";s:5:\"\\f581\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-grin-beam\";a:2:{s:3:\"hex\";s:5:\"\\f582\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-grin-beam-sweat\";a:2:{s:3:\"hex\";s:5:\"\\f583\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-grin-hearts\";a:2:{s:3:\"hex\";s:5:\"\\f584\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-grin-squint\";a:2:{s:3:\"hex\";s:5:\"\\f585\";s:7:\"unicode\";s:8:\"\";}s:24:\"far fa-grin-squint-tears\";a:2:{s:3:\"hex\";s:5:\"\\f586\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-grin-stars\";a:2:{s:3:\"hex\";s:5:\"\\f587\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-grin-tears\";a:2:{s:3:\"hex\";s:5:\"\\f588\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-grin-tongue\";a:2:{s:3:\"hex\";s:5:\"\\f589\";s:7:\"unicode\";s:8:\"\";}s:25:\"far fa-grin-tongue-squint\";a:2:{s:3:\"hex\";s:5:\"\\f58a\";s:7:\"unicode\";s:8:\"\";}s:23:\"far fa-grin-tongue-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58b\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-grin-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58c\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-hand-lizard\";a:2:{s:3:\"hex\";s:5:\"\\f258\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-hand-paper\";a:2:{s:3:\"hex\";s:5:\"\\f256\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-hand-peace\";a:2:{s:3:\"hex\";s:5:\"\\f25b\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-hand-point-down\";a:2:{s:3:\"hex\";s:5:\"\\f0a7\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-hand-point-left\";a:2:{s:3:\"hex\";s:5:\"\\f0a5\";s:7:\"unicode\";s:8:\"\";}s:23:\"far fa-hand-point-right\";a:2:{s:3:\"hex\";s:5:\"\\f0a4\";s:7:\"unicode\";s:8:\"\";}s:20:\"far fa-hand-point-up\";a:2:{s:3:\"hex\";s:5:\"\\f0a6\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-hand-pointer\";a:2:{s:3:\"hex\";s:5:\"\\f25a\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-hand-rock\";a:2:{s:3:\"hex\";s:5:\"\\f255\";s:7:\"unicode\";s:8:\"\";}s:20:\"far fa-hand-scissors\";a:2:{s:3:\"hex\";s:5:\"\\f257\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-hand-spock\";a:2:{s:3:\"hex\";s:5:\"\\f259\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-handshake\";a:2:{s:3:\"hex\";s:5:\"\\f2b5\";s:7:\"unicode\";s:8:\"\";}s:10:\"far fa-hdd\";a:2:{s:3:\"hex\";s:5:\"\\f0a0\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-heart\";a:2:{s:3:\"hex\";s:5:\"\\f004\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-hospital\";a:2:{s:3:\"hex\";s:5:\"\\f0f8\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-hourglass\";a:2:{s:3:\"hex\";s:5:\"\\f254\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-id-badge\";a:2:{s:3:\"hex\";s:5:\"\\f2c1\";s:7:\"unicode\";s:8:\"\";}s:14:\"far fa-id-card\";a:2:{s:3:\"hex\";s:5:\"\\f2c2\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-image\";a:2:{s:3:\"hex\";s:5:\"\\f03e\";s:7:\"unicode\";s:8:\"\";}s:13:\"far fa-images\";a:2:{s:3:\"hex\";s:5:\"\\f302\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-keyboard\";a:2:{s:3:\"hex\";s:5:\"\\f11c\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-kiss\";a:2:{s:3:\"hex\";s:5:\"\\f596\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-kiss-beam\";a:2:{s:3:\"hex\";s:5:\"\\f597\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-kiss-wink-heart\";a:2:{s:3:\"hex\";s:5:\"\\f598\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-laugh\";a:2:{s:3:\"hex\";s:5:\"\\f599\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-laugh-beam\";a:2:{s:3:\"hex\";s:5:\"\\f59a\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-laugh-squint\";a:2:{s:3:\"hex\";s:5:\"\\f59b\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-laugh-wink\";a:2:{s:3:\"hex\";s:5:\"\\f59c\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-lemon\";a:2:{s:3:\"hex\";s:5:\"\\f094\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-life-ring\";a:2:{s:3:\"hex\";s:5:\"\\f1cd\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-lightbulb\";a:2:{s:3:\"hex\";s:5:\"\\f0eb\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-list-alt\";a:2:{s:3:\"hex\";s:5:\"\\f022\";s:7:\"unicode\";s:8:\"\";}s:10:\"far fa-map\";a:2:{s:3:\"hex\";s:5:\"\\f279\";s:7:\"unicode\";s:8:\"\";}s:10:\"far fa-meh\";a:2:{s:3:\"hex\";s:5:\"\\f11a\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-meh-blank\";a:2:{s:3:\"hex\";s:5:\"\\f5a4\";s:7:\"unicode\";s:8:\"\";}s:23:\"far fa-meh-rolling-eyes\";a:2:{s:3:\"hex\";s:5:\"\\f5a5\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-minus-square\";a:2:{s:3:\"hex\";s:5:\"\\f146\";s:7:\"unicode\";s:8:\"\";}s:21:\"far fa-money-bill-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3d1\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-moon\";a:2:{s:3:\"hex\";s:5:\"\\f186\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-newspaper\";a:2:{s:3:\"hex\";s:5:\"\\f1ea\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-object-group\";a:2:{s:3:\"hex\";s:5:\"\\f247\";s:7:\"unicode\";s:8:\"\";}s:21:\"far fa-object-ungroup\";a:2:{s:3:\"hex\";s:5:\"\\f248\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-paper-plane\";a:2:{s:3:\"hex\";s:5:\"\\f1d8\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-pause-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28b\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-play-circle\";a:2:{s:3:\"hex\";s:5:\"\\f144\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-plus-square\";a:2:{s:3:\"hex\";s:5:\"\\f0fe\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-question-circle\";a:2:{s:3:\"hex\";s:5:\"\\f059\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-registered\";a:2:{s:3:\"hex\";s:5:\"\\f25d\";s:7:\"unicode\";s:8:\"\";}s:14:\"far fa-sad-cry\";a:2:{s:3:\"hex\";s:5:\"\\f5b3\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-sad-tear\";a:2:{s:3:\"hex\";s:5:\"\\f5b4\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-save\";a:2:{s:3:\"hex\";s:5:\"\\f0c7\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-share-square\";a:2:{s:3:\"hex\";s:5:\"\\f14d\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-smile\";a:2:{s:3:\"hex\";s:5:\"\\f118\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-smile-beam\";a:2:{s:3:\"hex\";s:5:\"\\f5b8\";s:7:\"unicode\";s:8:\"\";}s:17:\"far fa-smile-wink\";a:2:{s:3:\"hex\";s:5:\"\\f4da\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-snowflake\";a:2:{s:3:\"hex\";s:5:\"\\f2dc\";s:7:\"unicode\";s:8:\"\";}s:13:\"far fa-square\";a:2:{s:3:\"hex\";s:5:\"\\f0c8\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-star\";a:2:{s:3:\"hex\";s:5:\"\\f005\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-star-half\";a:2:{s:3:\"hex\";s:5:\"\\f089\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-sticky-note\";a:2:{s:3:\"hex\";s:5:\"\\f249\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-stop-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28d\";s:7:\"unicode\";s:8:\"\";}s:10:\"far fa-sun\";a:2:{s:3:\"hex\";s:5:\"\\f185\";s:7:\"unicode\";s:8:\"\";}s:15:\"far fa-surprise\";a:2:{s:3:\"hex\";s:5:\"\\f5c2\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-thumbs-down\";a:2:{s:3:\"hex\";s:5:\"\\f165\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-thumbs-up\";a:2:{s:3:\"hex\";s:5:\"\\f164\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-times-circle\";a:2:{s:3:\"hex\";s:5:\"\\f057\";s:7:\"unicode\";s:8:\"\";}s:12:\"far fa-tired\";a:2:{s:3:\"hex\";s:5:\"\\f5c8\";s:7:\"unicode\";s:8:\"\";}s:16:\"far fa-trash-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2ed\";s:7:\"unicode\";s:8:\"\";}s:11:\"far fa-user\";a:2:{s:3:\"hex\";s:5:\"\\f007\";s:7:\"unicode\";s:8:\"\";}s:18:\"far fa-user-circle\";a:2:{s:3:\"hex\";s:5:\"\\f2bd\";s:7:\"unicode\";s:8:\"\";}s:19:\"far fa-window-close\";a:2:{s:3:\"hex\";s:5:\"\\f410\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-window-maximize\";a:2:{s:3:\"hex\";s:5:\"\\f2d0\";s:7:\"unicode\";s:8:\"\";}s:22:\"far fa-window-minimize\";a:2:{s:3:\"hex\";s:5:\"\\f2d1\";s:7:\"unicode\";s:8:\"\";}s:21:\"far fa-window-restore\";a:2:{s:3:\"hex\";s:5:\"\\f2d2\";s:7:\"unicode\";s:8:\"\";}}}}}','no'),(506,'ACFFA_active_icon_set','free','no'),(539,'wp_insert_legalpages','a:4:{s:14:\"privacy_policy\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}s:16:\"terms_conditions\";a:2:{s:7:\"content\";s:2315:\"<p>Welcome to [sitename]. If you continue to browse and use this website you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern [sitename]\\\'s relationship with you in relation to this website.</p><p>The term [sitename] or \\\'us\\\' or \\\'we\\\' refers to the owner of the website. The term \\\'you\\\' refers to the user or viewer of our website. The use of this website is subject to the following terms of use:</p><ul><li>The content of the pages of this website is for your general information and use only. It is subject to change without notice.</li><li>Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.</li><li>Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.</li><li>This website contains material which is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.</li><li>All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.</li><li>Unauthorized use of this website may give rise to a claim for damages and/or be a criminal offense.</li><li>From time to time this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).</li><li>You may not create a link to this website from another website or document without [sitename]\\\'s prior written consent.</li></ul>\";s:13:\"assigned_page\";s:4:\"2057\";}s:10:\"disclaimer\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}s:9:\"copyright\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}}','yes'),(540,'wp_insert_version','2.5','yes'),(541,'widget_wp_insert_ad_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(544,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(555,'elementor_pro_license_key','activated','yes'),(556,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1681108944;s:5:\"value\";s:87:\"{\"license\":\"valid\",\"expires\":\"lifetime\",\"renewal_discount\":\"\",\"subscriptions\":\"enable\"}\";}','yes'),(557,'elementor_pro_version','3.0.5','yes'),(558,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(559,'_elementor_pro_installed_time','1602756317','yes'),(560,'elementor_fonts_manager_font_types','a:0:{}','yes'),(561,'elementor_fonts_manager_fonts','a:0:{}','yes'),(562,'elementor_custom_icon_sets_config','a:0:{}','yes'),(563,'secret_key','[HLWtWP:QU%U4Hjebv:.]>vkT+t| [|nD__H<+7:F!Cb>3/s 0=ijSt1#-|>m#US','no'),(616,'elementor_log','a:42:{s:32:\"a8f3b2146a43eff4cd0a154377de9329\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-01-24 02:26:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.3\";s:2:\"to\";s:5:\"3.5.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-24 02:26:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.3\";s:2:\"to\";s:5:\"3.5.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b32e757d40c9c71cdca56eab608b7f98\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-07 02:25:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-07 02:25:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"55b4bee61e64780ef8bc102910184a44\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-07 02:25:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-07 02:25:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"51a4dc5e42f661285018b866bab3b95b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-07 02:25:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-07 02:25:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"0fe632cdd75144bc0cbe5ef3a7770330\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-07 02:25:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-07 02:25:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"2c5f3dddfbebe4ef25c88a07324fe8a5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-07 02:25:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-07 02:25:03\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"13297aebef0a19fe74a5e4fe2e839171\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:96:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:1517;s:7:\"\0*\0date\";s:19:\"2022-02-07 05:32:48\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type null\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:278;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-03-18 11:32:27\";i:1;s:19:\"2022-03-18 12:04:47\";i:2;s:19:\"2022-03-18 16:52:59\";i:3;s:19:\"2022-03-19 18:12:28\";i:4;s:19:\"2022-03-20 04:54:08\";i:5;s:19:\"2022-03-20 05:34:57\";i:6;s:19:\"2022-03-20 06:49:02\";i:7;s:19:\"2022-03-20 20:22:20\";i:8;s:19:\"2022-03-20 23:13:01\";i:9;s:19:\"2022-03-21 00:10:33\";i:10;s:19:\"2022-03-21 02:25:43\";i:11;s:19:\"2022-03-21 03:51:20\";i:12;s:19:\"2022-03-21 04:08:41\";i:13;s:19:\"2022-03-21 04:38:42\";i:14;s:19:\"2022-03-21 05:08:42\";i:15;s:19:\"2022-03-21 14:17:15\";i:16;s:19:\"2022-03-21 15:34:44\";i:17;s:19:\"2022-03-21 21:06:55\";i:18;s:19:\"2022-03-22 13:01:07\";i:19;s:19:\"2022-03-23 02:13:27\";i:20;s:19:\"2022-03-23 06:17:10\";i:21;s:19:\"2022-03-23 07:55:46\";i:22;s:19:\"2022-03-23 08:25:26\";i:23;s:19:\"2022-03-23 21:24:30\";i:24;s:19:\"2022-03-23 23:37:20\";i:25;s:19:\"2022-03-24 05:26:09\";i:26;s:19:\"2022-03-24 09:41:33\";i:27;s:19:\"2022-03-24 17:28:30\";i:28;s:19:\"2022-03-25 00:30:17\";i:29;s:19:\"2022-03-25 05:17:56\";i:30;s:19:\"2022-03-25 05:39:46\";i:31;s:19:\"2022-03-25 10:16:27\";i:32;s:19:\"2022-03-25 10:17:35\";i:33;s:19:\"2022-03-25 15:05:26\";i:34;s:19:\"2022-03-25 23:20:31\";i:35;s:19:\"2022-03-25 23:38:16\";i:36;s:19:\"2022-03-26 02:00:47\";i:37;s:19:\"2022-03-26 05:17:24\";i:38;s:19:\"2022-03-26 20:09:33\";i:39;s:19:\"2022-03-27 19:43:11\";i:40;s:19:\"2022-03-27 20:36:23\";i:41;s:19:\"2022-03-28 01:36:57\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type null\";s:4:\"file\";s:96:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1517;s:5:\"trace\";b:1;}}s:32:\"4579a4f46b3be1b6cacf74c4b187ce23\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-28 14:31:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-28 14:31:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9e27404b735bdeffda8b76542d7c7b07\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-28 14:31:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-28 14:31:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"dcf5a0e058d45dbf54255042dbe1cadc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-28 14:31:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-28 14:31:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"95c7750ba7eaec5d7095f06f4d636378\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-28 14:31:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-28 14:31:06\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"b22531cb1a21c057b49e9f3711760b48\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-28 14:31:06\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-28 14:31:06\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.5\";s:2:\"to\";s:5:\"3.5.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"69c8f365177a72149679cea53642565e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-28 02:28:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-28 02:28:09\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bef464ff1c29fe64c3b56e4ce0b9fe07\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-28 02:28:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-28 02:28:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"028b890e7340e6262d37530422e97865\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-28 02:28:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-28 02:28:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"c6beea66e158bb58cf6285ea41c3394a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-28 02:28:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-28 02:28:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"722dad0df8a98813486699625abe2e38\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-03-28 02:28:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-03-28 02:28:09\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.6\";s:2:\"to\";s:5:\"3.6.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"de37ef35317ebd119cfa952311f9f251\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-03-28 02:29:14\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:24402;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-03-29 11:49:23\";i:1;s:19:\"2023-03-29 12:32:03\";i:2;s:19:\"2023-03-29 15:03:12\";i:3;s:19:\"2023-03-29 15:08:36\";i:4;s:19:\"2023-03-29 16:03:26\";i:5;s:19:\"2023-03-29 17:48:57\";i:6;s:19:\"2023-03-30 04:06:55\";i:7;s:19:\"2023-03-30 18:56:23\";i:8;s:19:\"2023-03-31 01:39:17\";i:9;s:19:\"2023-03-31 17:08:44\";i:10;s:19:\"2023-03-31 17:09:25\";i:11;s:19:\"2023-03-31 17:27:34\";i:12;s:19:\"2023-03-31 17:27:34\";i:13;s:19:\"2023-03-31 17:51:21\";i:14;s:19:\"2023-04-01 07:10:17\";i:15;s:19:\"2023-04-01 09:27:35\";i:16;s:19:\"2023-04-02 03:55:46\";i:17;s:19:\"2023-04-02 07:13:36\";i:18;s:19:\"2023-04-02 18:43:58\";i:19;s:19:\"2023-04-03 02:29:55\";i:20;s:19:\"2023-04-03 08:36:46\";i:21;s:19:\"2023-04-03 17:33:36\";i:22;s:19:\"2023-04-04 16:39:18\";i:23;s:19:\"2023-04-04 19:30:13\";i:24;s:19:\"2023-04-04 20:22:22\";i:25;s:19:\"2023-04-05 01:17:37\";i:26;s:19:\"2023-04-05 04:08:39\";i:27;s:19:\"2023-04-05 06:29:31\";i:28;s:19:\"2023-04-05 08:34:46\";i:29;s:19:\"2023-04-05 10:51:26\";i:30;s:19:\"2023-04-05 11:10:35\";i:31;s:19:\"2023-04-06 22:54:06\";i:32;s:19:\"2023-04-07 01:53:58\";i:33;s:19:\"2023-04-07 03:26:23\";i:34;s:19:\"2023-04-07 04:52:30\";i:35;s:19:\"2023-04-07 23:33:04\";i:36;s:19:\"2023-04-08 00:28:57\";i:37;s:19:\"2023-04-08 04:09:36\";i:38;s:19:\"2023-04-09 00:04:26\";i:39;s:19:\"2023-04-09 02:01:04\";i:40;s:19:\"2023-04-09 06:11:20\";i:41;s:19:\"2023-04-09 17:16:26\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"2761ee78a249c5f2836037a1f1ff5ae7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-04 14:28:45\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-04 14:28:45\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"970012923f582ee1b8e1ed16011d4fc0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-04 14:28:46\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-04 14:28:46\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"d6472a44ca286451ca49839a45fffc46\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-04 14:28:46\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-04 14:28:46\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d5bbd6b4cbbebc926e128a76bcebe742\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-04 14:28:46\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-04 14:28:46\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"75ed78be502a9a3b9087e365ed25d26f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-04 14:28:46\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-04 14:28:46\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.1\";s:2:\"to\";s:5:\"3.6.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d4b06d70d3c54a0d9a064ce27e98d769\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-04-05 17:40:06\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:100:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor-pro/modules/query-control/module.php\";s:4:\"line\";i:824;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:15;s:14:\"\0*\0times_dates\";a:15:{i:0;s:19:\"2022-04-05 17:40:06\";i:1;s:19:\"2022-04-05 17:40:52\";i:2;s:19:\"2022-04-05 17:41:45\";i:3;s:19:\"2022-04-06 11:10:08\";i:4;s:19:\"2022-04-06 11:12:05\";i:5;s:19:\"2022-04-06 11:14:17\";i:6;s:19:\"2022-04-16 07:50:25\";i:7;s:19:\"2022-04-23 12:12:56\";i:8;s:19:\"2022-05-08 18:05:09\";i:9;s:19:\"2022-05-09 04:54:08\";i:10;s:19:\"2022-05-11 10:37:53\";i:11;s:19:\"2022-05-11 17:41:37\";i:12;s:19:\"2022-05-11 17:41:42\";i:13;s:19:\"2022-05-12 08:02:51\";i:14;s:19:\"2022-05-26 04:54:15\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"ec3abd626a9c841fc2fdc7180e3fa30c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-04-05 17:40:06\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:100:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor-pro/modules/theme-builder/module.php\";s:4:\"line\";i:162;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:15;s:14:\"\0*\0times_dates\";a:15:{i:0;s:19:\"2022-04-05 17:40:06\";i:1;s:19:\"2022-04-05 17:40:52\";i:2;s:19:\"2022-04-05 17:41:45\";i:3;s:19:\"2022-04-06 11:10:08\";i:4;s:19:\"2022-04-06 11:12:05\";i:5;s:19:\"2022-04-06 11:14:17\";i:6;s:19:\"2022-04-16 07:50:25\";i:7;s:19:\"2022-04-23 12:12:56\";i:8;s:19:\"2022-05-08 18:05:09\";i:9;s:19:\"2022-05-09 04:54:08\";i:10;s:19:\"2022-05-11 10:37:53\";i:11;s:19:\"2022-05-11 17:41:37\";i:12;s:19:\"2022-05-11 17:41:42\";i:13;s:19:\"2022-05-12 08:02:51\";i:14;s:19:\"2022-05-26 04:54:15\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"4d4e4ee5452ba5c7c3d8302aba50c971\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-04-05 17:40:06\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:92:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor-pro/modules/forms/module.php\";s:4:\"line\";i:69;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:15;s:14:\"\0*\0times_dates\";a:15:{i:0;s:19:\"2022-04-05 17:40:06\";i:1;s:19:\"2022-04-05 17:40:52\";i:2;s:19:\"2022-04-05 17:41:45\";i:3;s:19:\"2022-04-06 11:10:08\";i:4;s:19:\"2022-04-06 11:12:05\";i:5;s:19:\"2022-04-06 11:14:17\";i:6;s:19:\"2022-04-16 07:50:25\";i:7;s:19:\"2022-04-23 12:12:56\";i:8;s:19:\"2022-05-08 18:05:09\";i:9;s:19:\"2022-05-09 04:54:08\";i:10;s:19:\"2022-05-11 10:37:53\";i:11;s:19:\"2022-05-11 17:41:37\";i:12;s:19:\"2022-05-11 17:41:42\";i:13;s:19:\"2022-05-12 08:02:51\";i:14;s:19:\"2022-05-26 04:54:15\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"65ea15e4be4fc56f5b05ab5560828764\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-04-05 17:40:06\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:94:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:92:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor-pro/modules/forms/module.php\";s:4:\"line\";i:70;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:15;s:14:\"\0*\0times_dates\";a:15:{i:0;s:19:\"2022-04-05 17:40:06\";i:1;s:19:\"2022-04-05 17:40:52\";i:2;s:19:\"2022-04-05 17:41:45\";i:3;s:19:\"2022-04-06 11:10:08\";i:4;s:19:\"2022-04-06 11:12:05\";i:5;s:19:\"2022-04-06 11:14:17\";i:6;s:19:\"2022-04-16 07:50:25\";i:7;s:19:\"2022-04-23 12:12:56\";i:8;s:19:\"2022-05-08 18:05:09\";i:9;s:19:\"2022-05-09 04:54:08\";i:10;s:19:\"2022-05-11 10:37:53\";i:11;s:19:\"2022-05-11 17:41:37\";i:12;s:19:\"2022-05-11 17:41:42\";i:13;s:19:\"2022-05-12 08:02:51\";i:14;s:19:\"2022-05-26 04:54:15\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:97:\"/var/www/tropofoto.com/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"92bbbda9ea64b611ebc9ea232f81944e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-18 02:29:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-18 02:29:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d9a5a7eda7223c9f59ad6223d1f323ea\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-18 02:29:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-18 02:29:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"47af4180396fbb07d9971381290dc13e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-18 02:29:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-18 02:29:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6da89f3d1acf5593e309dc8902022def\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-18 02:29:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-18 02:29:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"11eddb32d419caffe629897c95813b24\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-18 02:29:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-18 02:29:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"31a06aef9a8dae6b617e6a27d83a8b96\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-02 02:27:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-02 02:27:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b3be80c9ba80dc4853d4e93a516ffd2a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-02 02:27:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-02 02:27:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"6b67e26c2726e0849e2a95f6e74ac39e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-02 02:27:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-02 02:27:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8f234abe2e484bad26a97905859cf4a8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-02 02:27:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-02 02:27:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"832da3c222b610eb249e616c423661d6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-02 02:27:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-02 02:27:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"817150f95bac5008c4716303f5225d4f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-09-15 07:27:52\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:96:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor-pro/modules/query-control/module.php\";s:4:\"line\";i:824;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:37;s:14:\"\0*\0times_dates\";a:37:{i:0;s:19:\"2022-09-15 07:27:52\";i:1;s:19:\"2022-09-25 01:35:15\";i:2;s:19:\"2022-10-27 08:28:13\";i:3;s:19:\"2022-10-27 17:04:27\";i:4;s:19:\"2022-10-27 20:06:49\";i:5;s:19:\"2022-12-05 05:07:57\";i:6;s:19:\"2022-12-08 14:47:14\";i:7;s:19:\"2022-12-09 09:27:29\";i:8;s:19:\"2022-12-09 15:18:08\";i:9;s:19:\"2022-12-19 17:48:31\";i:10;s:19:\"2023-01-06 22:45:09\";i:11;s:19:\"2023-01-08 00:38:20\";i:12;s:19:\"2023-01-08 00:38:23\";i:13;s:19:\"2023-02-03 07:13:06\";i:14;s:19:\"2023-02-07 07:14:06\";i:15;s:19:\"2023-02-11 07:15:08\";i:16;s:19:\"2023-02-15 07:16:04\";i:17;s:19:\"2023-02-19 07:18:22\";i:18;s:19:\"2023-02-19 07:18:26\";i:19;s:19:\"2023-02-23 07:19:07\";i:20;s:19:\"2023-02-27 07:20:08\";i:21;s:19:\"2023-03-03 07:21:10\";i:22;s:19:\"2023-03-03 07:21:14\";i:23;s:19:\"2023-03-05 21:24:31\";i:24;s:19:\"2023-03-07 07:26:26\";i:25;s:19:\"2023-03-07 07:26:39\";i:26;s:19:\"2023-03-11 07:27:07\";i:27;s:19:\"2023-03-15 07:28:06\";i:28;s:19:\"2023-03-18 11:13:48\";i:29;s:19:\"2023-03-18 21:57:26\";i:30;s:19:\"2023-03-19 07:29:07\";i:31;s:19:\"2023-03-23 07:30:12\";i:32;s:19:\"2023-03-27 07:31:13\";i:33;s:19:\"2023-03-31 07:32:07\";i:34;s:19:\"2023-03-31 17:27:35\";i:35;s:19:\"2023-04-04 07:33:09\";i:36;s:19:\"2023-04-08 08:01:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"8b457a582b4d6af48329ca5e3fbde5a6\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-09-15 07:27:52\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:96:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor-pro/modules/theme-builder/module.php\";s:4:\"line\";i:162;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:37;s:14:\"\0*\0times_dates\";a:37:{i:0;s:19:\"2022-09-15 07:27:52\";i:1;s:19:\"2022-09-25 01:35:15\";i:2;s:19:\"2022-10-27 08:28:13\";i:3;s:19:\"2022-10-27 17:04:27\";i:4;s:19:\"2022-10-27 20:06:49\";i:5;s:19:\"2022-12-05 05:07:57\";i:6;s:19:\"2022-12-08 14:47:14\";i:7;s:19:\"2022-12-09 09:27:29\";i:8;s:19:\"2022-12-09 15:18:08\";i:9;s:19:\"2022-12-19 17:48:31\";i:10;s:19:\"2023-01-06 22:45:09\";i:11;s:19:\"2023-01-08 00:38:20\";i:12;s:19:\"2023-01-08 00:38:23\";i:13;s:19:\"2023-02-03 07:13:06\";i:14;s:19:\"2023-02-07 07:14:06\";i:15;s:19:\"2023-02-11 07:15:08\";i:16;s:19:\"2023-02-15 07:16:04\";i:17;s:19:\"2023-02-19 07:18:22\";i:18;s:19:\"2023-02-19 07:18:26\";i:19;s:19:\"2023-02-23 07:19:07\";i:20;s:19:\"2023-02-27 07:20:08\";i:21;s:19:\"2023-03-03 07:21:10\";i:22;s:19:\"2023-03-03 07:21:14\";i:23;s:19:\"2023-03-05 21:24:31\";i:24;s:19:\"2023-03-07 07:26:26\";i:25;s:19:\"2023-03-07 07:26:39\";i:26;s:19:\"2023-03-11 07:27:07\";i:27;s:19:\"2023-03-15 07:28:06\";i:28;s:19:\"2023-03-18 11:13:48\";i:29;s:19:\"2023-03-18 21:57:26\";i:30;s:19:\"2023-03-19 07:29:07\";i:31;s:19:\"2023-03-23 07:30:12\";i:32;s:19:\"2023-03-27 07:31:13\";i:33;s:19:\"2023-03-31 07:32:07\";i:34;s:19:\"2023-03-31 17:27:35\";i:35;s:19:\"2023-04-04 07:33:09\";i:36;s:19:\"2023-04-08 08:01:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"61eacfe1f0d0a47bf16f2bfec1378511\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-09-15 07:27:53\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:88:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor-pro/modules/forms/module.php\";s:4:\"line\";i:69;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:37;s:14:\"\0*\0times_dates\";a:37:{i:0;s:19:\"2022-09-15 07:27:53\";i:1;s:19:\"2022-09-25 01:35:15\";i:2;s:19:\"2022-10-27 08:28:13\";i:3;s:19:\"2022-10-27 17:04:27\";i:4;s:19:\"2022-10-27 20:06:49\";i:5;s:19:\"2022-12-05 05:07:57\";i:6;s:19:\"2022-12-08 14:47:14\";i:7;s:19:\"2022-12-09 09:27:29\";i:8;s:19:\"2022-12-09 15:18:08\";i:9;s:19:\"2022-12-19 17:48:31\";i:10;s:19:\"2023-01-06 22:45:09\";i:11;s:19:\"2023-01-08 00:38:20\";i:12;s:19:\"2023-01-08 00:38:23\";i:13;s:19:\"2023-02-03 07:13:06\";i:14;s:19:\"2023-02-07 07:14:06\";i:15;s:19:\"2023-02-11 07:15:08\";i:16;s:19:\"2023-02-15 07:16:04\";i:17;s:19:\"2023-02-19 07:18:22\";i:18;s:19:\"2023-02-19 07:18:26\";i:19;s:19:\"2023-02-23 07:19:07\";i:20;s:19:\"2023-02-27 07:20:08\";i:21;s:19:\"2023-03-03 07:21:10\";i:22;s:19:\"2023-03-03 07:21:14\";i:23;s:19:\"2023-03-05 21:24:31\";i:24;s:19:\"2023-03-07 07:26:26\";i:25;s:19:\"2023-03-07 07:26:39\";i:26;s:19:\"2023-03-11 07:27:07\";i:27;s:19:\"2023-03-15 07:28:06\";i:28;s:19:\"2023-03-18 11:13:48\";i:29;s:19:\"2023-03-18 21:57:26\";i:30;s:19:\"2023-03-19 07:29:07\";i:31;s:19:\"2023-03-23 07:30:12\";i:32;s:19:\"2023-03-27 07:31:13\";i:33;s:19:\"2023-03-31 07:32:07\";i:34;s:19:\"2023-03-31 17:27:35\";i:35;s:19:\"2023-04-04 07:33:09\";i:36;s:19:\"2023-04-08 08:01:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"49e16200d50a559d3b0151f4adbbb35c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-09-15 07:27:53\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:90:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:88:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor-pro/modules/forms/module.php\";s:4:\"line\";i:70;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:37;s:14:\"\0*\0times_dates\";a:37:{i:0;s:19:\"2022-09-15 07:27:53\";i:1;s:19:\"2022-09-25 01:35:15\";i:2;s:19:\"2022-10-27 08:28:13\";i:3;s:19:\"2022-10-27 17:04:27\";i:4;s:19:\"2022-10-27 20:06:49\";i:5;s:19:\"2022-12-05 05:07:57\";i:6;s:19:\"2022-12-08 14:47:14\";i:7;s:19:\"2022-12-09 09:27:29\";i:8;s:19:\"2022-12-09 15:18:08\";i:9;s:19:\"2022-12-19 17:48:31\";i:10;s:19:\"2023-01-06 22:45:09\";i:11;s:19:\"2023-01-08 00:38:20\";i:12;s:19:\"2023-01-08 00:38:23\";i:13;s:19:\"2023-02-03 07:13:06\";i:14;s:19:\"2023-02-07 07:14:06\";i:15;s:19:\"2023-02-11 07:15:08\";i:16;s:19:\"2023-02-15 07:16:04\";i:17;s:19:\"2023-02-19 07:18:22\";i:18;s:19:\"2023-02-19 07:18:26\";i:19;s:19:\"2023-02-23 07:19:07\";i:20;s:19:\"2023-02-27 07:20:08\";i:21;s:19:\"2023-03-03 07:21:10\";i:22;s:19:\"2023-03-03 07:21:14\";i:23;s:19:\"2023-03-05 21:24:31\";i:24;s:19:\"2023-03-07 07:26:26\";i:25;s:19:\"2023-03-07 07:26:39\";i:26;s:19:\"2023-03-11 07:27:07\";i:27;s:19:\"2023-03-15 07:28:06\";i:28;s:19:\"2023-03-18 11:13:48\";i:29;s:19:\"2023-03-18 21:57:26\";i:30;s:19:\"2023-03-19 07:29:07\";i:31;s:19:\"2023-03-23 07:30:12\";i:32;s:19:\"2023-03-27 07:31:13\";i:33;s:19:\"2023-03-31 07:32:07\";i:34;s:19:\"2023-03-31 17:27:35\";i:35;s:19:\"2023-04-04 07:33:09\";i:36;s:19:\"2023-04-08 08:01:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:93:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"1bba1900be64b6c772d5bc3527a9764c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:83:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor-pro/license/updater.php\";s:7:\"\0*\0line\";i:85;s:7:\"\0*\0date\";s:19:\"2022-10-19 15:19:04\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:28:\"Undefined index: new_version\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:5;s:14:\"\0*\0times_dates\";a:5:{i:0;s:19:\"2022-10-19 15:19:04\";i:1;s:19:\"2022-11-25 19:42:17\";i:2;s:19:\"2022-12-08 20:10:36\";i:3;s:19:\"2022-12-28 19:41:21\";i:4;s:19:\"2023-02-04 04:45:18\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:28:\"Undefined index: new_version\";s:4:\"file\";s:83:\"/opt/aphex/sites/tropofoto.com/wp-content/plugins/elementor-pro/license/updater.php\";s:4:\"line\";i:85;s:5:\"trace\";b:1;}}}','no'),(641,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(647,'jabrfc_text','a:4:{s:4:\"find\";a:1:{i:0;s:180:\"@ Copyright 2020 Zix. Built with <i class=\"fa fa-heart\"></i> by <a href=\"https://themeforest.net/user/droitthemes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">DroitThemes</a>\";}s:7:\"replace\";a:1:{i:0;s:29:\"@Copyright 2020 TropoFoto.com\";}s:12:\"willLinkback\";s:2:\"no\";s:14:\"linkbackPostId\";s:3:\"850\";}','yes'),(800,'auto_update_core_dev','enabled','yes'),(801,'auto_update_core_minor','enabled','yes'),(802,'auto_update_core_major','unset','yes'),(803,'db_upgraded','','yes'),(810,'7238c9070c32ed98a38810e053129a9a','a:2:{s:7:\"timeout\";i:1675529117;s:5:\"value\";a:6:{s:7:\"license\";s:5:\"valid\";s:7:\"expires\";s:8:\"lifetime\";i:0;s:13:\"subscriptions\";i:1;s:6:\"enable\";i:2;s:16:\"renewal_discount\";i:3;s:0:\"\";}}','no'),(811,'mainwp_child_update_version','1.5','yes'),(812,'mainwp_child_plugin_version','4.2.3','yes'),(813,'mainwp_child_auth','a:7:{i:5;s:32:\"173e0ec6940bcaadbd9dfe71cdad8f76\";s:4:\"last\";i:1680998666;i:4;s:32:\"92bc29e724714fbfcbbebb50222c16eb\";i:3;s:32:\"e62e04806bbd9ce138490cafebe6764d\";i:2;s:32:\"f43cd321166183f2f2877b483c405c83\";i:1;s:32:\"357204de33faa65d1a2aa16d9cd3b995\";i:0;s:32:\"1366e175ac1d7d9c0054ac64e2e22649\";}','yes'),(814,'mainwp_child_branding_settings','a:4:{s:13:\"contact_label\";s:15:\"Contact Support\";s:18:\"cancelled_branding\";b:0;s:23:\"branding_preserve_title\";s:0:\"\";s:21:\"branding_disconnected\";s:0:\"\";}','no'),(815,'mainwp_child_activated_once','1','no'),(816,'secure_auth_key','g+rX`<-<%F w+.n-v;m0t.3]Q.WDe}SSIJyle1_.?!g.G-(O~?.gES}=V= B5O48','no'),(817,'secure_auth_salt','I^qo6S6Ni)C4N- p0s()C{71@bgvT9hym-sw/|o7jdJAjR.}pwYv(MSV$BI]FE,a','no'),(818,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF6MmZXendWc1RiODVIbEo2WUI0WgpNQWdpcnRzZDBxUmFEV2hrR3RvREFOMzBwSm9rbmNSVXVyaXNSVEJWTC9DMzljcElvSEFSRHFONWUzWHFIeERmCjRnZ2FUTExpcVdBc2xjYmFnWWFRdDN4Y29lNXdWRW9wK3pNdmZNUXY1TXNzUEZlOU9STSswbE1sdjFQRlljcGYKeWFTY3BDbUs0NFlBR1I0M3dSdUZCeTNhK1Z0cVdhY1A4bEYwTmNmRWZDTmJsMnowbSsyd0VSVnU4ekxBM0kyVApxMXNJN0UyeENJbjlVa2xzSWE1RzI4YjV3V3B4UlQ2dFRvQ3lSZllYQ2ZqbUZTVU5QTEI4VHdRc0xvS2RiUm05CmRLY1FIUTBFbjc5dmdZZW4zT3YxOXJLSUc3TThTZTlIMFNYRzRTNnpDMW1RSnF4bFNZbXZraW5LNzNTZzg0ajQKQ1FJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(819,'mainwp_child_server','https://dashboard.comparrot.nl/wp-admin/','no'),(820,'mainwp_child_nonce','0','no'),(821,'mainwp_child_nossl','0','yes'),(822,'mainwp_child_nossl_key','3980aa11803a5d4a1ff7884ef4f6fdae5d352802d3cd31f65532ade61c09f2b9','yes'),(823,'mainwp_premium_updates','a:0:{}','no'),(832,'mainwp_child_clone_sites','0','no'),(833,'mainwp_child_siteid','1196','no'),(841,'recovery_keys','a:0:{}','yes'),(852,'finished_updating_comment_type','1','yes'),(855,'https_detection_errors','a:0:{}','yes'),(1321,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:18:\"[email protected]\";s:7:\"version\";s:5:\"6.0.3\";s:9:\"timestamp\";i:1666082083;}','no'),(3019,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10499,'elementor_controls_usage','a:3:{s:7:\"section\";a:11:{s:5:\"image\";a:2:{s:5:\"count\";i:33;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:33;s:10:\"image_size\";i:31;s:5:\"align\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:27:\"background_hover_transition\";i:20;s:15:\"hover_animation\";i:20;s:28:\"css_filters_hover_css_filter\";i:10;s:28:\"css_filters_hover_brightness\";i:10;s:7:\"opacity\";i:5;s:22:\"css_filters_css_filter\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:2;s:8:\"_padding\";i:7;s:7:\"_margin\";i:1;}s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:70;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:7:{s:12:\"_inline_size\";i:65;s:19:\"_inline_size_tablet\";i:11;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:4;s:21:\"space_between_widgets\";i:17;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:26;s:14:\"padding_mobile\";i:17;s:13:\"margin_tablet\";i:8;s:14:\"padding_tablet\";i:20;s:7:\"padding\";i:32;s:6:\"margin\";i:32;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:6;}}s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:6:{s:24:\"background_overlay_color\";i:15;s:22:\"css_filters_brightness\";i:15;s:35:\"background_overlay_hover_background\";i:15;s:30:\"background_overlay_hover_color\";i:15;s:32:\"background_overlay_hover_opacity\";i:20;s:26:\"background_overlay_opacity\";i:5;}s:13:\"section_style\";a:4:{s:27:\"background_hover_background\";i:6;s:16:\"background_color\";i:17;s:21:\"background_background\";i:21;s:27:\"background_hover_transition\";i:5;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:31;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:31;s:11:\"header_size\";i:9;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:31;s:21:\"typography_typography\";i:31;s:22:\"typography_font_family\";i:31;s:20:\"typography_font_size\";i:31;s:22:\"typography_font_weight\";i:31;s:25:\"typography_text_transform\";i:7;s:22:\"typography_line_height\";i:29;s:25:\"typography_letter_spacing\";i:4;s:27:\"typography_font_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:3;s:5:\"shape\";i:3;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:3;s:20:\"icon_secondary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:3;s:21:\"hover_secondary_color\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:34;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:25;s:16:\"content_position\";i:3;s:13:\"content_width\";i:12;s:6:\"layout\";i:12;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:18;}}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:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:10;s:13:\"margin_tablet\";i:5;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:9;s:16:\"background_image\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:22:\"typography_line_height\";i:12;s:10:\"text_color\";i:6;s:5:\"align\";i:5;s:25:\"typography_letter_spacing\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:10:\"zix-button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:15:\"zix-workprocess\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:2;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:2;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"zix-statistics\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:18:\"statistics_section\";a:1:{s:5:\"title\";i:1;}s:8:\"desc_sec\";a:1:{s:11:\"description\";i:1;}s:19:\"count_item_repeater\";a:1:{s:12:\"stat_counter\";i:1;}s:12:\"shape_images\";a:1:{s:7:\"shape_1\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:32:\"statistics_background_background\";i:1;s:27:\"statistics_background_image\";i:1;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:8:\"position\";i:6;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:6;s:10:\"image_size\";i:6;}s:21:\"section_style_content\";a:13:{s:18:\"title_bottom_space\";i:6;s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:17:\"description_color\";i:6;s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:34:\"description_typography_line_height\";i:6;}}}}}s:7:\"wp-post\";a:12:{s:5:\"image\";a:2:{s:5:\"count\";i:154;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:154;s:5:\"align\";i:42;s:10:\"image_size\";i:122;s:12:\"align_mobile\";i:20;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:15:\"_padding_mobile\";i:24;s:14:\"_margin_tablet\";i:12;s:14:\"_margin_mobile\";i:12;s:15:\"_padding_tablet\";i:12;s:8:\"_padding\";i:16;}s:17:\"_section_position\";a:3:{s:9:\"_position\";i:20;s:9:\"_offset_x\";i:20;s:9:\"_offset_y\";i:20;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:60;s:15:\"hover_animation\";i:60;s:28:\"css_filters_hover_css_filter\";i:60;s:28:\"css_filters_hover_brightness\";i:60;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:242;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:242;s:5:\"align\";i:24;s:11:\"header_size\";i:84;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:242;s:21:\"typography_typography\";i:242;s:22:\"typography_font_family\";i:242;s:20:\"typography_font_size\";i:242;s:22:\"typography_font_weight\";i:242;s:22:\"typography_line_height\";i:226;s:27:\"typography_font_size_mobile\";i:52;s:25:\"typography_text_transform\";i:60;s:25:\"typography_letter_spacing\";i:32;s:29:\"typography_line_height_tablet\";i:128;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:14:\"_margin_mobile\";i:24;s:15:\"_padding_mobile\";i:24;s:7:\"_margin\";i:58;s:8:\"_padding\";i:20;s:14:\"_margin_tablet\";i:16;s:15:\"_padding_tablet\";i:16;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:440;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:8:{s:12:\"_inline_size\";i:408;s:19:\"_inline_size_mobile\";i:88;s:21:\"space_between_widgets\";i:104;s:19:\"_inline_size_tablet\";i:164;s:12:\"align_tablet\";i:12;s:23:\"content_position_tablet\";i:20;s:28:\"space_between_widgets_tablet\";i:72;s:28:\"space_between_widgets_mobile\";i:30;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:24;s:16:\"background_color\";i:60;s:27:\"background_hover_background\";i:12;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:60;s:22:\"css_filters_brightness\";i:60;s:35:\"background_overlay_hover_background\";i:60;s:30:\"background_overlay_hover_color\";i:60;s:32:\"background_overlay_hover_opacity\";i:60;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:124;s:7:\"padding\";i:148;s:13:\"margin_mobile\";i:228;s:14:\"padding_mobile\";i:176;s:14:\"padding_tablet\";i:168;s:13:\"margin_tablet\";i:92;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:238;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:72;s:3:\"gap\";i:154;s:13:\"content_width\";i:64;s:16:\"content_position\";i:32;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:130;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:88;s:6:\"margin\";i:94;s:13:\"margin_tablet\";i:46;s:7:\"padding\";i:134;s:13:\"margin_mobile\";i:54;s:14:\"padding_tablet\";i:106;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:38;s:16:\"background_color\";i:38;}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:11:\"text-editor\";a:2:{s:5:\"count\";i:76;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:76;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:28;s:21:\"typography_typography\";i:74;s:22:\"typography_font_family\";i:74;s:20:\"typography_font_size\";i:74;s:22:\"typography_font_weight\";i:72;s:22:\"typography_line_height\";i:74;s:5:\"align\";i:30;s:25:\"typography_letter_spacing\";i:12;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:34;}}}}s:16:\"zix_social_share\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:7:{s:18:\"f_icon_hover_color\";i:12;s:9:\"t_icon_bg\";i:2;s:18:\"t_icon_hover_color\";i:12;s:9:\"p_icon_bg\";i:2;s:18:\"p_icon_hover_color\";i:12;s:9:\"l_icon_bg\";i:2;s:18:\"l_icon_hover_color\";i:12;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:12;}}}}s:15:\"zix-workprocess\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:12;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:12;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:38;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:38;s:5:\"shape\";i:38;s:5:\"align\";i:38;s:12:\"align_mobile\";i:20;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:36;s:20:\"icon_secondary_color\";i:36;s:9:\"icon_size\";i:38;s:12:\"icon_padding\";i:38;s:12:\"icon_spacing\";i:38;s:16:\"icon_size_tablet\";i:20;s:19:\"icon_padding_tablet\";i:20;s:19:\"icon_spacing_tablet\";i:20;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:36;s:21:\"hover_secondary_color\";i:36;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:14:\"_margin_mobile\";i:20;s:15:\"_padding_mobile\";i:20;s:14:\"_margin_tablet\";i:20;s:15:\"_padding_tablet\";i:20;s:7:\"_margin\";i:14;s:8:\"_padding\";i:12;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:16;}}}}s:10:\"zix-button\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:20;s:10:\"button_url\";i:20;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:20;s:18:\"zix_btn_background\";i:20;}}}}s:16:\"zix-progress-bar\";a:2:{s:5:\"count\";i:40;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:40;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:4;s:15:\"_padding_mobile\";i:4;}}}}s:4:\"team\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:20;s:15:\"under_title_img\";i:20;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:20;}}s:5:\"style\";a:3:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:20;s:28:\"typography_title_font_family\";i:20;s:26:\"typography_title_font_size\";i:20;s:28:\"typography_title_font_weight\";i:20;s:28:\"typography_title_line_height\";i:20;s:33:\"typography_title_font_size_mobile\";i:20;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:20;}s:14:\"style_subtitle\";a:3:{s:30:\"typography_subtitle_typography\";i:2;s:31:\"typography_subtitle_font_family\";i:2;s:36:\"typography_subtitle_font_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:4;}s:18:\"section_text_style\";a:8:{s:10:\"text_color\";i:6;s:16:\"text_color_hover\";i:4;s:11:\"text_indent\";i:4;s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:27:\"icon_typography_line_height\";i:4;}}}}}s:7:\"wp-page\";a:18:{s:7:\"heading\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:13;s:5:\"align\";i:13;s:11:\"header_size\";i:2;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:13;s:21:\"typography_typography\";i:13;s:22:\"typography_font_family\";i:13;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:13;s:25:\"typography_text_transform\";i:8;s:22:\"typography_line_height\";i:12;s:25:\"typography_letter_spacing\";i:8;s:27:\"typography_font_size_mobile\";i:8;s:29:\"typography_line_height_mobile\";i:1;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:8;s:15:\"_padding_mobile\";i:8;s:7:\"_margin\";i:9;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:14;s:10:\"image_size\";i:13;s:5:\"align\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;}}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:26;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:21:\"space_between_widgets\";i:7;s:12:\"_inline_size\";i:8;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:8;s:13:\"margin_mobile\";i:2;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:20;s:6:\"_title\";i:6;s:6:\"layout\";i:11;s:13:\"content_width\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:3;s:14:\"padding_mobile\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:15:\"animation_delay\";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:15:\"zix-workprocess\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}s:9:\"zix-about\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:8:{s:13:\"section_style\";a:1:{s:12:\"select_style\";i:1;}s:18:\"about_carousel_sec\";a:1:{s:13:\"carousel_item\";i:1;}s:9:\"title_sec\";a:4:{s:10:\"title_text\";i:1;s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;s:10:\"show_title\";i:1;}s:13:\"about_content\";a:1:{s:5:\"title\";i:1;}s:22:\"about_content_subtitle\";a:1:{s:8:\"subtitle\";i:1;}s:18:\"about_content_desc\";a:1:{s:11:\"description\";i:1;}s:15:\"button_settings\";a:2:{s:9:\"btn_label\";i:1;s:7:\"btn_url\";i:1;}s:15:\"featured_images\";a:3:{s:12:\"featured_img\";i:1;s:11:\"objebt_text\";i:1;s:11:\"objebt_img1\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:4:{s:27:\"about_background_background\";i:1;s:22:\"about_background_image\";i:1;s:14:\"bg_shape_right\";i:1;s:13:\"bg_shape_left\";i:1;}}}}s:13:\"zix-portfolio\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:13:\"section_style\";a:1:{s:12:\"select_style\";i:1;}s:9:\"title_sec\";a:3:{s:10:\"title_text\";i:1;s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:16:\"portfolio_filter\";a:1:{s:10:\"show_count\";i:1;}s:20:\"view_all_btn_section\";a:2:{s:12:\"view_all_btn\";i:1;s:12:\"view_btn_url\";i:1;}}s:5:\"style\";a:1:{s:19:\"background_shape_s3\";a:6:{s:21:\"shape_bg_1_background\";i:1;s:16:\"shape_bg_1_image\";i:1;s:21:\"shape_bg_3_background\";i:1;s:16:\"shape_bg_3_image\";i:1;s:21:\"shape_bg_2_background\";i:1;s:16:\"shape_bg_2_image\";i:1;}}}}s:12:\"zix-timeline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"timelime_settings\";a:1:{s:13:\"timeline_item\";i:1;}}}}s:11:\"testimonial\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:11:\"content_sec\";a:1:{s:12:\"testimonials\";i:1;}s:22:\"section_bg_shadow_text\";a:1:{s:17:\"shadow_text_color\";i:1;}}s:5:\"style\";a:1:{s:18:\"testimonial_sec_bg\";a:2:{s:16:\"section_bg_color\";i:1;s:21:\"section_bg_background\";i:1;}}}}s:10:\"subsciribe\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:9:\"title_sec\";a:1:{s:5:\"title\";i:1;}s:12:\"subtitle_sec\";a:1:{s:8:\"subtitle\";i:1;}s:13:\"form_settings\";a:1:{s:14:\"submit_btn_img\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:11:\"color_title\";i:1;s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:31:\"typography_title_letter_spacing\";i:1;}s:12:\"style_bg_img\";a:1:{s:18:\"sec_bg_shape_image\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{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:1:{s:5:\"align\";i:3;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:3:\"gap\";i:1;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:4:{s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:28:\"css_filters_hover_css_filter\";i:1;s:16:\"hover_transition\";i:1;}}}}s:8:\"zix-hero\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:12:\"hero_content\";a:1:{s:5:\"title\";i:1;}s:15:\"description_sec\";a:1:{s:11:\"description\";i:1;}s:15:\"button_settings\";a:1:{s:9:\"btn_label\";i:1;}s:15:\"featured_images\";a:2:{s:12:\"featured_img\";i:1;s:11:\"objebt_img1\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:26:\"hero_background_background\";i:1;s:21:\"hero_background_image\";i:1;}}}}s:7:\"zix-c2a\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:11:\"c2a_section\";a:2:{s:5:\"title\";i:1;s:11:\"titlebefore\";i:1;}s:15:\"button_settings\";a:1:{s:9:\"btn_label\";i:1;}s:12:\"shape_images\";a:1:{s:7:\"shape_2\";i:1;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;s:3:\"tag\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}}}}}','no'),(15040,'wp_force_deactivated_plugins','a:0:{}','yes'),(37305,'elementor_events_db_version','1.0.0','no'),(44656,'mainwp_cache_control_cache_solution','Cache Enabler','yes'),(71292,'ai1wm_secret_key','LuyuULbZTFjd','yes'),(71293,'ai1wm_backups_labels','a:0:{}','yes'),(71294,'ai1wm_sites_links','a:0:{}','yes'),(71295,'swift_performance_plugin_organizer','a:0:{}','yes'),(71296,'jetpack_active_modules','a:0:{}','yes'),(71300,'_elementor_global_css','a:7:{s:4:\"time\";i:1662938151;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(71303,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.2-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.2\";s:7:\"version\";s:3:\"6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.2.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.2-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.2\";s:7:\"version\";s:3:\"6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.3-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-rollback-0.zip\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.0\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1681019869;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(71314,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.0.3\";s:7:\"current\";s:3:\"6.0\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1666082083;s:5:\"retry\";b:0;}','no'),(71315,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-multisite-extension\";a:13:{s:4:\"name\";s:19:\"Multisite Extension\";s:4:\"slug\";s:19:\"multisite-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/multisite-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"4.27\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:595:\"<ul class=\"description\"><li>Export single site from the network</li><li>Export multiple sites from the network</li><li>Export the whole network</li><li>Import single site into the network</li><li>Import multiple sites into the network</li><li>Import a network</li><li>Clone single site within a network</li><li>Multi-network support</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Backup scheduler with hourly, daily, and weekly options</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/multisite-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/multisite-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/multisite-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(71316,'_site_transient_ai1wm_last_check_for_updates','1681019869','no'),(71319,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":5,\"critical\":1}','yes'),(71505,'mainwp_child_auto_purge_cache','0','yes'),(71506,'mainwp_child_cloud_flair_enabled','0','yes'),(71507,'mainwp_cloudflair_email','','yes'),(71508,'mainwp_cloudflair_key','','yes'),(73553,'ai1wmme_plugin_key','72821048-196b-4fc6-a1e9-59bd100238e8','yes'),(73554,'Niteoweb.SpiderBlocker.Bots','a:40:{i:0;a:4:{s:4:\"name\";s:10:\"Ahrefs Bot\";s:2:\"re\";s:9:\"AhrefsBot\";s:4:\"desc\";s:25:\"https://ahrefs.com/robot/\";s:5:\"state\";b:1;}i:1;a:4:{s:4:\"name\";s:8:\"MJ12 bot\";s:2:\"re\";s:7:\"MJ12bot\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:2;a:4:{s:4:\"name\";s:9:\"Roger Bot\";s:2:\"re\";s:8:\"Rogerbot\";s:4:\"desc\";s:40:\"http://moz.com/help/pro/rogerbot-crawler\";s:5:\"state\";b:1;}i:3;a:4:{s:4:\"name\";s:11:\"Semrush Bot\";s:2:\"re\";s:10:\"SemrushBot\";s:4:\"desc\";s:31:\"http://www.semrush.com/bot.html\";s:5:\"state\";b:1;}i:4;a:4:{s:4:\"name\";s:11:\"ia_archiver\";s:2:\"re\";s:11:\"ia_archiver\";s:4:\"desc\";s:36:\"http://archive.org/about/exclude.php\";s:5:\"state\";b:1;}i:5;a:4:{s:4:\"name\";s:8:\"ScoutJet\";s:2:\"re\";s:8:\"ScoutJet\";s:4:\"desc\";s:19:\"http://scoutjet.com\";s:5:\"state\";b:1;}i:6;a:4:{s:4:\"name\";s:7:\"sistrix\";s:2:\"re\";s:7:\"sistrix\";s:4:\"desc\";s:26:\"http://crawler.sistrix.net\";s:5:\"state\";b:1;}i:7;a:4:{s:4:\"name\";s:16:\"SearchmetricsBot\";s:2:\"re\";s:16:\"SearchmetricsBot\";s:4:\"desc\";s:50:\"http://www.searchmetrics.com/en/searchmetrics-bot/\";s:5:\"state\";b:1;}i:8;a:4:{s:4:\"name\";s:14:\"SEOkicks-Robot\";s:2:\"re\";s:14:\"SEOkicks-Robot\";s:4:\"desc\";s:33:\"http://www.seokicks.de/robot.html\";s:5:\"state\";b:1;}i:9;a:4:{s:4:\"name\";s:16:\"Lipperhey Spider\";s:2:\"re\";s:16:\"Lipperhey Spider\";s:4:\"desc\";s:43:\"http://www.lipperhey.com/en/website-spider/\";s:5:\"state\";b:1;}i:10;a:4:{s:4:\"name\";s:6:\"Exabot\";s:2:\"re\";s:6:\"Exabot\";s:4:\"desc\";s:44:\"http://www.exalead.com/search/webmasterguide\";s:5:\"state\";b:1;}i:11;a:4:{s:4:\"name\";s:6:\"NC Bot\";s:2:\"re\";s:5:\"NCBot\";s:4:\"desc\";s:55:\"https://twitter.com/NetComber/status/334476871691550721\";s:5:\"state\";b:1;}i:12;a:4:{s:4:\"name\";s:15:\"BacklinkCrawler\";s:2:\"re\";s:15:\"BacklinkCrawler\";s:4:\"desc\";s:40:\"http://www.backlinktest.com/crawler.html\";s:5:\"state\";b:1;}i:13;a:4:{s:4:\"name\";s:15:\"archive.org Bot\";s:2:\"re\";s:15:\"archive.org_bot\";s:4:\"desc\";s:42:\"http://archive.org/details/archive.org_bot\";s:5:\"state\";b:1;}i:14;a:4:{s:4:\"name\";s:12:\"MeanPath Bot\";s:2:\"re\";s:11:\"meanpathbot\";s:4:\"desc\";s:37:\"https://meanpath.com/meanpathbot.html\";s:5:\"state\";b:1;}i:15;a:4:{s:4:\"name\";s:18:\"PagesInventory Bot\";s:2:\"re\";s:14:\"PagesInventory\";s:4:\"desc\";s:56:\"http://www.botsvsbrowsers.com/details/1002332/index.html\";s:5:\"state\";b:1;}i:16;a:4:{s:4:\"name\";s:12:\"Aboundex Bot\";s:2:\"re\";s:11:\"Aboundexbot\";s:4:\"desc\";s:32:\"http://www.aboundex.com/crawler/\";s:5:\"state\";b:1;}i:17;a:4:{s:4:\"name\";s:15:\"SeoProfiler Bot\";s:2:\"re\";s:5:\"spbot\";s:4:\"desc\";s:31:\"http://www.seoprofiler.com/bot/\";s:5:\"state\";b:1;}i:18;a:4:{s:4:\"name\";s:11:\"Linkdex Bot\";s:2:\"re\";s:10:\"linkdexbot\";s:4:\"desc\";s:34:\"http://www.linkdex.com/about/bots/\";s:5:\"state\";b:1;}i:19;a:4:{s:4:\"name\";s:7:\"Gigabot\";s:2:\"re\";s:7:\"Gigabot\";s:4:\"desc\";s:45:\"http://www.useragentstring.com/pages/Gigabot/\";s:5:\"state\";b:1;}i:20;a:4:{s:4:\"name\";s:6:\"DotBot\";s:2:\"re\";s:6:\"dotbot\";s:4:\"desc\";s:35:\"http://en.wikipedia.org/wiki/DotBot\";s:5:\"state\";b:1;}i:21;a:4:{s:4:\"name\";s:5:\"Nutch\";s:2:\"re\";s:5:\"Nutch\";s:4:\"desc\";s:32:\"http://nutch.apache.org/bot.html\";s:5:\"state\";b:1;}i:22;a:4:{s:4:\"name\";s:8:\"BLEX Bot\";s:2:\"re\";s:7:\"BLEXBot\";s:4:\"desc\";s:27:\"http://webmeup-crawler.com/\";s:5:\"state\";b:1;}i:23;a:4:{s:4:\"name\";s:6:\"Ezooms\";s:2:\"re\";s:6:\"Ezooms\";s:4:\"desc\";s:49:\"http://graphicline.co.za/blogs/what-is-ezooms-bot\";s:5:\"state\";b:1;}i:24;a:4:{s:4:\"name\";s:11:\"Majestic 12\";s:2:\"re\";s:11:\"Majestic-12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:25;a:4:{s:4:\"name\";s:12:\"Majestic SEO\";s:2:\"re\";s:12:\"Majestic-SEO\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:26;a:4:{s:4:\"name\";s:7:\"DSearch\";s:2:\"re\";s:7:\"DSearch\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:27;a:4:{s:4:\"name\";s:4:\"MJ12\";s:2:\"re\";s:4:\"MJ12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:28;a:4:{s:4:\"name\";s:10:\"Blekko Bot\";s:2:\"re\";s:9:\"BlekkoBot\";s:4:\"desc\";s:33:\"http://blekko.com/about/blekkobot\";s:5:\"state\";b:1;}i:29;a:4:{s:4:\"name\";s:6:\"Yandex\";s:2:\"re\";s:6:\"Yandex\";s:4:\"desc\";s:41:\"http://help.yandex.com/search/?id=1112030\";s:5:\"state\";b:0;}i:30;a:4:{s:4:\"name\";s:10:\"Google Bot\";s:2:\"re\";s:9:\"googlebot\";s:4:\"desc\";s:57:\"https://support.google.com/webmasters/answer/182072?hl=en\";s:5:\"state\";b:0;}i:31;a:4:{s:4:\"name\";s:18:\"Feedfetcher Google\";s:2:\"re\";s:18:\"Feedfetcher-Google\";s:4:\"desc\";s:51:\"https://support.google.com/webmasters/answer/178852\";s:5:\"state\";b:0;}i:32;a:4:{s:4:\"name\";s:8:\"Bing Bot\";s:2:\"re\";s:7:\"BingBot\";s:4:\"desc\";s:36:\"http://en.wikipedia.org/wiki/Bingbot\";s:5:\"state\";b:0;}i:33;a:4:{s:4:\"name\";s:9:\"Nerdy Bot\";s:2:\"re\";s:8:\"NerdyBot\";s:4:\"desc\";s:20:\"http://nerdybot.com/\";s:5:\"state\";b:1;}i:34;a:4:{s:4:\"name\";s:9:\"James BOT\";s:2:\"re\";s:8:\"JamesBOT\";s:4:\"desc\";s:32:\"http://cognitiveseo.com/bot.html\";s:5:\"state\";b:1;}i:35;a:4:{s:4:\"name\";s:7:\"Tin Eye\";s:2:\"re\";s:6:\"TinEye\";s:4:\"desc\";s:34:\"http://www.tineye.com/crawler.html\";s:5:\"state\";b:1;}i:36;a:4:{s:4:\"name\";s:5:\"Baidu\";s:2:\"re\";s:11:\"Baiduspider\";s:4:\"desc\";s:47:\"http://www.baidu.com/search/robots_english.html\";s:5:\"state\";b:1;}i:37;a:4:{s:4:\"name\";s:8:\"Serpstat\";s:2:\"re\";s:8:\"serpstat\";s:4:\"desc\";s:21:\"https://serpstat.com/\";s:5:\"state\";b:1;}i:38;a:4:{s:4:\"name\";s:5:\"SpyFu\";s:2:\"re\";s:5:\"spyfu\";s:4:\"desc\";s:22:\"https://www.spyfu.com/\";s:5:\"state\";b:1;}i:39;a:4:{s:4:\"name\";s:5:\"Prlog\";s:2:\"re\";s:5:\"Prlog\";s:4:\"desc\";s:17:\"https://prlog.ru/\";s:5:\"state\";b:1;}}','yes'),(77364,'cache_enabler','a:19:{s:7:\"version\";s:5:\"1.8.7\";s:20:\"use_trailing_slashes\";i:1;s:19:\"permalink_structure\";s:18:\"has_trailing_slash\";s:13:\"cache_expires\";i:0;s:17:\"cache_expiry_time\";i:0;s:30:\"clear_site_cache_on_saved_post\";i:0;s:33:\"clear_site_cache_on_saved_comment\";i:0;s:30:\"clear_site_cache_on_saved_term\";i:0;s:30:\"clear_site_cache_on_saved_user\";i:0;s:34:\"clear_site_cache_on_changed_plugin\";i:0;s:26:\"convert_image_urls_to_webp\";i:0;s:12:\"mobile_cache\";i:0;s:14:\"compress_cache\";i:0;s:11:\"minify_html\";i:0;s:20:\"minify_inline_css_js\";i:0;s:17:\"excluded_post_ids\";s:0:\"\";s:19:\"excluded_page_paths\";s:0:\"\";s:22:\"excluded_query_strings\";s:0:\"\";s:16:\"excluded_cookies\";s:0:\"\";}','yes'),(99144,'can_compress_scripts','0','no'),(117155,'wpil_2_license_status','','yes'),(117156,'wpil_2_license_key','','yes'),(117157,'wpil_2_license_data','','yes'),(117158,'wpil_2_ignore_numbers','1','yes'),(117159,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(117160,'wpil_2_links_open_new_tab','0','yes'),(117161,'wpil_2_debug_mode','0','yes'),(117162,'wpil_option_update_reporting_data_on_save','0','yes'),(117163,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(117164,'wpil_has_run_initial_scan','1','yes'),(117165,'wpil_site_db_version','1.22','yes'),(117166,'wpil_link_table_is_created','1','yes'),(117167,'wpil_fresh_install','','yes'),(117168,'wpil_install_date','2023-02-16 20:44:29','yes'),(117171,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:39:\"wp-sheet-editor-premium/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.5.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1676580271;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:31:\"/opt/aphex/sites/tropofoto.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:8:\"sdk_path\";s:39:\"wp-sheet-editor-premium/vendor/freemius\";s:7:\"version\";s:5:\"2.5.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1676580271;}}','yes'),(117172,'fs_debug_mode','','yes'),(117173,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:11:\"plugin_data\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1676580271;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:13:\"tropofoto.com\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1676616817;s:7:\"version\";s:13:\"2.25.2-beta.1\";}s:15:\"prev_is_premium\";b:1;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"10c89438f5314ba94613a61f407559db\";s:7:\"updates\";a:1:{i:1010;N;}}','yes'),(117274,'vg_sheet_editor','a:8:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:4:\"post\";}s:17:\"be_posts_per_page\";i:20;s:23:\"be_load_items_on_scroll\";i:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";i:0;}','yes'),(117314,'fs_gdpr','a:1:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(117543,'vgse_columns_visibility','a:0:{}','yes'),(117544,'vgse_columns_visibility_migrated','1','yes'),(117545,'vgse_welcome_redirect','no','yes'),(117546,'vgse_hide_whats_new_2.25.2-beta.1','yes','yes'),(118349,'_site_transient_timeout_php_check_0bf95b5f09d09e56bf994b7894d9087c','1681330312','no'),(118350,'_site_transient_php_check_0bf95b5f09d09e56bf994b7894d9087c','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(118389,'_transient_timeout_e25306697fa1eb2a92febd0bdb9747d3','1681106269','no'),(118390,'_transient_e25306697fa1eb2a92febd0bdb9747d3','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 09 Apr 2023 05:57:49 GMT\";s:12:\"content-type\";s:25:\"text/plain; charset=utf-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:5:\"ord 2\";}}s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:3:\"raw\";s:1406:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Sun, 09 Apr 2023 05:57:49 GMT\r\nContent-Type: text/plain; charset=utf-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Encoding: br\r\nX-nc: ord 2\r\n\r\n{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Sun, 09 Apr 2023 05:57:49 GMT\";}s:12:\"content-type\";a:1:{i:0;s:25:\"text/plain; charset=utf-8\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:15:\"x-frame-options\";a:1:{i:0;s:10:\"SAMEORIGIN\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:4:\"x-nc\";a:1:{i:0;s:5:\"ord 2\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:51:\"https://api.wordpress.org/plugins/update-check/1.1/\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(118391,'_transient_timeout_acf_plugin_updates','1681192669','no'),(118392,'_transient_acf_plugin_updates','a:4:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"6.1.3\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.2\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.9.1\";}}','no'),(118393,'_site_transient_timeout_theme_roots','1681021670','no'),(118394,'_site_transient_theme_roots','a:4:{s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";s:3:\"zix\";s:7:\"/themes\";}','no'),(118395,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1681019870;s:7:\"checked\";a:4:{s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";s:3:\"zix\";s:5:\"1.0.5\";}s:8:\"response\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wp_options` VALUES (118396,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1681019871;s:8:\"response\";a:13:{s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:49:\"w.org/plugins/advanced-custom-fields-font-awesome\";s:4:\"slug\";s:35:\"advanced-custom-fields-font-awesome\";s:6:\"plugin\";s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";s:11:\"new_version\";s:5:\"4.0.5\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/advanced-custom-fields-font-awesome/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/advanced-custom-fields-font-awesome.4.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/advanced-custom-fields-font-awesome/assets/icon-256x256.jpg?rev=1016227\";s:2:\"1x\";s:88:\"https://ps.w.org/advanced-custom-fields-font-awesome/assets/icon-128x128.jpg?rev=1016227\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/advanced-custom-fields-font-awesome/assets/banner-772x250.jpg?rev=859936\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:234:\"<ul>\n<li>Fixed compatibility issue with ACF 6.1+ causing this plugins settings page to break</li>\n<li>Fixed bug with logic for theme 'bundling' of this plugin that caused issues loading assets in some environments</li>\n</ul>\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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:3:\"5.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"5.2\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.73\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.73.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2837281\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2837281\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:5:\"5.2.4\";}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:7:\"5.7.5.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";b: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:6:\"3.12.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.0\";}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:7:\"4.4.0.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/mainwp-child/assets/banner-1544x500.jpg?rev=2734948\";s:2:\"1x\";s:67:\"https://ps.w.org/mainwp-child/assets/banner-772x250.jpg?rev=2734948\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mainwp-child/assets/banner-1544x500-rtl.jpg?rev=2712922\";s:2:\"1x\";s:71:\"https://ps.w.org/mainwp-child/assets/banner-772x250-rtl.jpg?rev=2712922\";}s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:47:\"one-click-demo-import/one-click-demo-import.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:35:\"w.org/plugins/one-click-demo-import\";s:4:\"slug\";s:21:\"one-click-demo-import\";s:6:\"plugin\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:11:\"new_version\";s:5:\"3.1.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/one-click-demo-import/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685\";s:2:\"1x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685\";s:2:\"1x\";s:76:\"https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/scheduled-post-trigger\";s:4:\"slug\";s:22:\"scheduled-post-trigger\";s:6:\"plugin\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/scheduled-post-trigger/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/scheduled-post-trigger.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/scheduled-post-trigger/assets/icon-128x128.jpg?rev=1492075\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/scheduled-post-trigger/assets/banner-772x250.jpg?rev=1492080\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:23:\"spiderblocker/index.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/spiderblocker\";s:4:\"slug\";s:13:\"spiderblocker\";s:6:\"plugin\";s:23:\"spiderblocker/index.php\";s:11:\"new_version\";s:5:\"1.3.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/spiderblocker/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/spiderblocker.1.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-256x256.jpg?rev=2476085\";s:2:\"1x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-128x128.jpg?rev=2476085\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/spiderblocker/assets/banner-1544x500.jpg?rev=2476085\";s:2:\"1x\";s:68:\"https://ps.w.org/spiderblocker/assets/banner-772x250.jpg?rev=2476085\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b: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:5:\"4.4.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/redux-framework.4.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347\";s:3:\"svg\";s:60:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2889347\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.1\";}s:23:\"wp-insert/wp-insert.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/wp-insert\";s:4:\"slug\";s:9:\"wp-insert\";s:6:\"plugin\";s:23:\"wp-insert/wp-insert.php\";s:11:\"new_version\";s:5:\"2.5.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-insert/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-insert.2.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/wp-insert/assets/icon-256x256.png?rev=984289\";s:2:\"1x\";s:61:\"https://ps.w.org/wp-insert/assets/icon-128x128.png?rev=984289\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-insert/assets/banner-772x250.jpg?rev=607069\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";b:0;s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"6.1.3\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.2\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:45:\"w.org/plugins/better-404-redirect-to-homepage\";s:4:\"slug\";s:31:\"better-404-redirect-to-homepage\";s:6:\"plugin\";s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/better-404-redirect-to-homepage/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/better-404-redirect-to-homepage.1.0.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:84:\"https://ps.w.org/better-404-redirect-to-homepage/assets/icon-128x128.png?rev=1898188\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.3\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:45:\"remove-footer-credit/remove-footer-credit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/remove-footer-credit\";s:4:\"slug\";s:20:\"remove-footer-credit\";s:6:\"plugin\";s:45:\"remove-footer-credit/remove-footer-credit.php\";s:11:\"new_version\";s:6:\"1.0.13\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/remove-footer-credit/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/remove-footer-credit.1.0.13.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/remove-footer-credit/assets/icon-128x128.jpg?rev=1821059\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/remove-footer-credit/assets/banner-772x250.jpg?rev=1821059\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:6:\"plugin\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:11:\"new_version\";s:13:\"2.25.2-beta.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:7:\"checked\";a:23:{s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";s:5:\"4.0.3\";s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.9.1\";s:19:\"akismet/akismet.php\";s:5:\"4.2.4\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.61\";s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";s:4:\"4.18\";s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";s:5:\"1.0.0\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:7:\"5.5.6.1\";s:23:\"elementor/elementor.php\";s:5:\"3.6.5\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"3.0.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"wordpress-autoblogging/basic-auth.php\";s:3:\"0.1\";s:37:\"link-whisper-premium/link-whisper.php\";s:5:\"1.5.9\";s:29:\"mainwp-child/mainwp-child.php\";s:5:\"4.2.3\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:5:\"3.1.1\";s:45:\"remove-footer-credit/remove-footer-credit.php\";s:6:\"1.0.13\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:3:\"3.0\";s:23:\"spiderblocker/index.php\";s:5:\"1.3.1\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.3.14\";s:23:\"wp-insert/wp-insert.php\";s:5:\"2.5.0\";s:27:\"js_composer/js_composer.php\";s:5:\"6.4.1\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:13:\"2.25.2-beta.1\";s:21:\"zix-core/zix-core.php\";s:5:\"1.0.4\";}}','no'),(118401,'_transient_timeout_global_styles_zix','1681060646','no'),(118402,'_transient_global_styles_zix','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(118403,'_transient_timeout_global_styles_svg_filters_zix','1681060646','no'),(118404,'_transient_global_styles_svg_filters_zix','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=12670 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (11,7,'_wp_attached_file','woocommerce-placeholder.png'),(12,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1170x465.png\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-370x1200.png\";s:5:\"width\";i:370;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x770.png\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x683.png\";s:5:\"width\";i:1200;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13,11,'_wp_attached_file','2018/03/blog_detail-1.jpg'),(14,14,'_wp_attached_file','2018/04/page-title.jpg'),(15,34,'_wp_attached_file','2018/03/chart1.png'),(16,39,'_wp_attached_file','2018/04/blog1.jpg'),(17,41,'_wp_attached_file','2018/04/blog3.jpg'),(18,42,'_wp_attached_file','2018/04/blog5.jpg'),(19,43,'_wp_attached_file','2018/04/blog6.jpg'),(20,44,'_wp_attached_file','2018/04/blog7.jpg'),(21,45,'_wp_attached_file','2018/04/blog9.jpg'),(22,58,'_wp_attached_file','2018/04/blog4.jpg'),(23,59,'_wp_attached_file','2018/04/blog8.jpg'),(24,74,'_wp_attached_file','2018/04/brand1.png'),(25,75,'_wp_attached_file','2018/04/brand2.png'),(26,76,'_wp_attached_file','2018/04/brand3.png'),(27,83,'_wp_attached_file','2018/04/brand4.png'),(28,84,'_wp_attached_file','2018/04/brand5.png'),(29,85,'_wp_attached_file','2018/04/brand6.png'),(30,86,'_wp_attached_file','2018/04/logo.png'),(31,87,'_wp_attached_file','2018/04/logo_white.png'),(32,88,'_wp_attached_file','2018/04/bg-footer.png'),(33,99,'_wp_attached_file','2018/04/bg-sidebar.png'),(34,117,'_wp_attached_file','2018/04/audio.mp3'),(35,157,'_wp_attached_file','2018/04/blog2.jpg'),(36,196,'_wp_attached_file','2018/05/404.png'),(37,201,'_wp_attached_file','2018/05/project2.jpg'),(38,202,'_wp_attached_file','2018/05/project3.jpg'),(39,203,'_wp_attached_file','2018/05/project4.jpg'),(40,204,'_wp_attached_file','2018/05/project5.jpg'),(41,205,'_wp_attached_file','2018/05/project6.jpg'),(42,205,'post_views_count','1'),(43,206,'_wp_attached_file','2018/05/project7.jpg'),(44,207,'_wp_attached_file','2018/05/project8.jpg'),(45,209,'_wp_attached_file','2018/05/project1.jpg'),(46,220,'_wp_attached_file','2018/05/avatar1.png'),(47,222,'_wp_attached_file','2018/05/chart2.png'),(48,223,'_wp_attached_file','2018/05/detail1.jpg'),(49,225,'_wp_attached_file','2018/05/chart3.png'),(50,226,'_wp_attached_file','2018/05/counter1.png'),(51,227,'_wp_attached_file','2018/05/counter2.png'),(52,228,'_wp_attached_file','2018/05/counter3.png'),(53,229,'_wp_attached_file','2018/05/counter4.png'),(54,261,'_wp_attached_file','2018/05/team1.jpg'),(55,262,'_wp_attached_file','2018/05/team2.jpg'),(56,263,'_wp_attached_file','2018/05/team3.jpg'),(57,264,'_wp_attached_file','2018/05/team4.jpg'),(58,265,'_wp_attached_file','2018/05/team5.jpg'),(59,266,'_wp_attached_file','2018/05/team6.jpg'),(60,267,'_wp_attached_file','2018/05/team7.jpg'),(61,268,'_wp_attached_file','2018/05/team8.jpg'),(62,308,'_wp_attached_file','2018/05/service1.png'),(63,309,'_wp_attached_file','2018/05/service2.png'),(64,310,'_wp_attached_file','2018/05/service3.png'),(65,311,'_wp_attached_file','2018/05/service4.png'),(66,312,'_wp_attached_file','2018/05/service5.png'),(67,313,'_wp_attached_file','2018/05/service6.png'),(68,314,'_wp_attached_file','2018/05/service7.png'),(69,315,'_wp_attached_file','2018/05/service8.png'),(70,316,'_wp_attached_file','2018/05/service9.png'),(71,317,'_wp_attached_file','2018/05/service10.png'),(72,318,'_wp_attached_file','2018/05/service11.png'),(73,319,'_wp_attached_file','2018/05/service12.png'),(74,320,'_wp_attached_file','2018/05/service13.png'),(75,321,'_wp_attached_file','2018/05/service14.png'),(76,322,'_wp_attached_file','2018/05/service15.png'),(77,323,'_wp_attached_file','2018/05/service16.png'),(78,324,'_wp_attached_file','2018/05/service17.png'),(79,325,'_wp_attached_file','2018/05/service18.png'),(80,325,'post_views_count','1'),(81,326,'_wp_attached_file','2018/05/service19.png'),(82,327,'_wp_attached_file','2018/05/service20.png'),(83,328,'_wp_attached_file','2018/05/service21.png'),(84,329,'_wp_attached_file','2018/05/service22.png'),(85,330,'_wp_attached_file','2018/05/service_detail1.jpg'),(86,332,'_wp_attached_file','2018/05/service_detail2.jpg'),(87,394,'_wp_attached_file','2018/05/pricing2.png'),(88,395,'_wp_attached_file','2018/05/pricing3.png'),(89,396,'_wp_attached_file','2018/05/pricing1.png'),(90,438,'_wp_attached_file','2018/05/bg1.jpg'),(91,528,'_wp_attached_file','2018/05/cd_6_angle.jpg'),(92,528,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_6_angle.jpg'),(93,529,'_wp_attached_file','2018/05/cd_6_flat.jpg'),(94,529,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_6_flat.jpg'),(95,530,'_wp_attached_file','2018/05/cd_4_angle.jpg'),(96,530,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_4_angle.jpg'),(97,531,'_wp_attached_file','2018/05/cd_4_flat.jpg'),(98,531,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_4_flat.jpg'),(99,533,'_wp_attached_file','2018/05/cd_5_angle.jpg'),(100,533,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_5_angle.jpg'),(101,534,'_wp_attached_file','2018/05/cd_5_flat.jpg'),(102,534,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_5_flat.jpg'),(103,536,'_wp_attached_file','2018/05/cd_3_angle.jpg'),(104,536,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_3_angle.jpg'),(105,537,'_wp_attached_file','2018/05/cd_3_flat.jpg'),(106,537,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_3_flat.jpg'),(107,538,'_wp_attached_file','2018/05/cd_2_angle.jpg'),(108,538,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_2_angle.jpg'),(109,539,'_wp_attached_file','2018/05/cd_2_flat.jpg'),(110,539,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_2_flat.jpg'),(111,540,'_wp_attached_file','2018/05/cd_1_angle.jpg'),(112,540,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_1_angle.jpg'),(113,541,'_wp_attached_file','2018/05/cd_1_flat.jpg'),(114,541,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_1_flat.jpg'),(115,542,'_wp_attached_file','2018/05/poster_5_up.jpg'),(116,542,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/poster_5_up.jpg'),(117,543,'_wp_attached_file','2018/05/Poster_5_flat.jpg'),(118,543,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/Poster_5_flat.jpg'),(119,545,'_wp_attached_file','2018/05/poster_4_up.jpg'),(120,545,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/poster_4_up.jpg'),(121,546,'_wp_attached_file','2018/05/Poster_4_flat.jpg'),(122,546,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/Poster_4_flat.jpg'),(123,548,'_wp_attached_file','2018/05/poster_3_up.jpg'),(124,548,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/poster_3_up.jpg'),(125,549,'_wp_attached_file','2018/05/Poster_3_flat.jpg'),(126,549,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/Poster_3_flat.jpg'),(127,551,'_wp_attached_file','2018/05/poster_2_up.jpg'),(128,551,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/poster_2_up.jpg'),(129,552,'_wp_attached_file','2018/05/Poster_2_flat.jpg'),(130,552,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/Poster_2_flat.jpg'),(131,554,'_wp_attached_file','2018/05/poster_1_up.jpg'),(132,554,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/poster_1_up.jpg'),(133,555,'_wp_attached_file','2018/05/Poster_1_flat.jpg'),(134,555,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/Poster_1_flat.jpg'),(135,557,'_wp_attached_file','2018/05/hoodie_6_front.jpg'),(136,557,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_6_front.jpg'),(137,558,'_wp_attached_file','2018/05/hoodie_6_back.jpg'),(138,558,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_6_back.jpg'),(139,559,'_wp_attached_file','2018/05/hoodie_5_front.jpg'),(140,559,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_5_front.jpg'),(141,560,'_wp_attached_file','2018/05/hoodie_5_back.jpg'),(142,560,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_5_back.jpg'),(143,561,'_wp_attached_file','2018/05/hoodie_4_front.jpg'),(144,561,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_4_front.jpg'),(145,562,'_wp_attached_file','2018/05/hoodie_4_back.jpg'),(146,562,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_4_back.jpg'),(147,563,'_wp_attached_file','2018/05/hoodie_3_front.jpg'),(148,563,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_3_front.jpg'),(149,564,'_wp_attached_file','2018/05/hoodie_3_back.jpg'),(150,564,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_3_back.jpg'),(151,566,'_wp_attached_file','2018/05/hoodie_2_front.jpg'),(152,566,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_2_front.jpg'),(153,567,'_wp_attached_file','2018/05/hoodie_2_back.jpg'),(154,567,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_2_back.jpg'),(155,568,'_wp_attached_file','2018/05/hoodie_7_front.jpg'),(156,568,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_7_front.jpg'),(157,569,'_wp_attached_file','2018/05/hoodie_7_back.jpg'),(158,569,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_7_back.jpg'),(159,570,'_wp_attached_file','2018/05/hoodie_1_back.jpg'),(160,570,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_1_back.jpg'),(161,571,'_wp_attached_file','2018/05/hoodie_1_front.jpg'),(162,571,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/hoodie_1_front.jpg'),(163,574,'_wp_attached_file','2018/05/T_7_front.jpg'),(164,574,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_7_front.jpg'),(165,575,'_wp_attached_file','2018/05/T_7_back.jpg'),(166,575,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_7_back.jpg'),(167,575,'post_views_count','2'),(168,576,'_wp_attached_file','2018/05/T_6_front.jpg'),(169,576,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_6_front.jpg'),(170,577,'_wp_attached_file','2018/05/T_6_back.jpg'),(171,577,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_6_back.jpg'),(172,578,'_wp_attached_file','2018/05/T_5_front.jpg'),(173,578,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_5_front.jpg'),(174,579,'_wp_attached_file','2018/05/T_5_back.jpg'),(175,579,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_5_back.jpg'),(176,580,'_wp_attached_file','2018/05/T_4_front.jpg'),(177,580,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_4_front.jpg'),(178,581,'_wp_attached_file','2018/05/T_3_back.jpg'),(179,581,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_3_back.jpg'),(180,582,'_wp_attached_file','2018/05/T_3_front.jpg'),(181,582,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_3_front.jpg'),(182,583,'_wp_attached_file','2018/05/T_4_back.jpg'),(183,583,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_4_back.jpg'),(184,584,'_wp_attached_file','2018/05/T_4_front1.jpg'),(185,584,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_4_front1.jpg'),(186,587,'_wp_attached_file','2018/05/T_2_front.jpg'),(187,587,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_front.jpg'),(188,588,'_wp_attached_file','2018/05/T_2_back.jpg'),(189,588,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_back.jpg'),(190,589,'_wp_attached_file','2018/05/T_1_front.jpg'),(191,589,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_1_front.jpg'),(192,590,'_wp_attached_file','2018/05/T_1_back.jpg'),(193,590,'_wc_attachment_source','http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_1_back.jpg'),(194,622,'_wp_attached_file','2018/05/bg3.jpg'),(195,630,'_wp_attached_file','2018/05/bg2.png'),(196,632,'_wp_attached_file','2018/05/bg4.jpg'),(197,655,'_wp_attached_file','2018/05/bg5.jpg'),(198,671,'_wp_attached_file','2018/05/bg6.png'),(199,674,'_wp_attached_file','2018/05/testi2.png'),(200,675,'_wp_attached_file','2018/05/signature.png'),(201,687,'_wp_attached_file','2018/05/bg7.jpg'),(202,753,'_wp_attached_file','2018/06/bg8.jpg'),(203,754,'_wp_attached_file','2018/06/bg9.jpg'),(204,815,'_wp_attached_file','2018/06/bg10.jpg'),(205,817,'_wp_attached_file','2018/06/bg11.png'),(206,840,'_wp_attached_file','2018/06/avatar2.png'),(207,841,'_wp_attached_file','2018/06/avatar3.png'),(208,842,'_wp_attached_file','2018/06/avatar4.png'),(209,848,'_wp_attached_file','2018/06/bg12.jpg'),(210,859,'_wp_attached_file','2018/06/bg13.jpg'),(211,933,'_wp_attached_file','2018/06/bg14.jpg'),(212,966,'_wp_attached_file','2018/06/arrow2.png'),(213,967,'_wp_attached_file','2018/06/arrow1.png'),(214,968,'_wp_attached_file','2018/06/apolo.png'),(215,976,'_wp_attached_file','2018/06/bg-15.jpg'),(216,983,'_wp_attached_file','2018/06/chart.png'),(217,1011,'_wp_attached_file','2018/06/case1.jpg'),(218,1015,'_wp_attached_file','2018/06/case3.jpg'),(219,1016,'_wp_attached_file','2018/06/case4.jpg'),(220,1017,'_wp_attached_file','2018/06/case2.jpg'),(221,1035,'_wp_attached_file','2018/06/map.png'),(222,1087,'_wp_attached_file','2018/05/project10.png'),(223,1279,'_wp_attached_file','2018/06/chart4.jpg'),(224,1531,'_wp_attached_file','2018/06/avatar5.jpg'),(225,1531,'_wp_attachment_wp_user_avatar','1'),(226,1533,'_wp_attached_file','2018/06/bg-16.jpg'),(227,1565,'_wp_attached_file','2018/06/step1.png'),(228,1566,'_wp_attached_file','2018/06/step2.png'),(229,1567,'_wp_attached_file','2018/06/step3.png'),(230,1568,'_wp_attached_file','2018/06/step4.png'),(231,1569,'_wp_attached_file','2018/06/step5.png'),(232,1577,'_wp_attached_file','2018/06/homepage-intro-image.jpg'),(233,1743,'_wp_attached_file','2018/08/Shuffle-5.1.2.zip'),(234,1750,'_wp_attached_file','woocommerce-placeholder.png'),(412,137,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(413,137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(414,137,'_wpb_vc_js_status','false'),(415,137,'_thumbnail_id','42'),(416,137,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(417,137,'post_views_count','9'),(418,137,'slide_template','default'),(419,138,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(420,138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(421,138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(422,138,'_wpb_vc_js_status','false'),(423,138,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(424,138,'_thumbnail_id','42'),(425,138,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(426,138,'post_views_count','8'),(427,138,'slide_template','default'),(428,139,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(429,139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(430,139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(431,139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(432,139,'_wpb_vc_js_status','false'),(433,139,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(434,139,'_wp_old_slug','demand-as-transportation-services-as-commerce-2'),(435,139,'_thumbnail_id','157'),(436,139,'post_views_count','22'),(437,139,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(438,139,'slide_template','default'),(439,139,'ef3-case_subttile',''),(440,140,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(441,140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(442,140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(443,140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(444,140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(445,140,'_wpb_vc_js_status','false'),(446,140,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(447,140,'_wp_old_slug','demand-as-transportation-services-as-commerce-2'),(448,140,'_thumbnail_id','41'),(449,140,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(450,140,'post_views_count','17'),(451,140,'slide_template','default'),(452,141,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(453,141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(454,141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(455,141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(456,141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(457,141,'_wpb_vc_js_status','false'),(458,141,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(459,141,'_wp_old_slug','demand-as-transportation-services-as-commerce-2'),(460,141,'_wp_old_slug','demand-as-transportation-services-as-commerce-2-3'),(461,141,'_thumbnail_id','39'),(462,141,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(463,141,'post_views_count','7'),(464,141,'slide_template','default'),(465,159,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(466,159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(467,159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(468,159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(469,159,'_wpb_vc_js_status','false'),(470,159,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(471,159,'_thumbnail_id','39'),(472,159,'_wp_old_slug','demand-as-transportation-services-as-commerce-2'),(473,159,'post_views_count','225'),(474,159,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(475,159,'slide_template','default'),(476,160,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(477,160,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(478,160,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(479,160,'_wpb_vc_js_status','true'),(480,160,'_thumbnail_id','42'),(481,160,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(482,160,'post_views_count','122'),(483,160,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(484,160,'slide_template','default'),(485,160,'ef3-case_subttile','For one leading pharmaceutical laboratory,'),(486,161,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(487,161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(488,161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(489,161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(490,161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(491,161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(492,161,'_wpb_vc_js_status','false'),(493,161,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(494,161,'_wp_old_slug','demand-as-transportation-services-as-commerce-2'),(495,161,'_thumbnail_id','41'),(496,161,'_wp_old_slug','demand-as-transportation-services-as-commerce-2-2'),(497,161,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(498,161,'post_views_count','16'),(499,161,'slide_template','default'),(500,162,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(501,162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(502,162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(503,162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(504,162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(505,162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(506,162,'_wpb_vc_js_status','false'),(507,162,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(508,162,'_wp_old_slug','demand-as-transportation-services-as-commerce-2'),(509,162,'_wp_old_slug','demand-as-transportation-services-as-commerce-2-3'),(510,162,'_thumbnail_id','39'),(511,162,'_wp_old_slug','demand-as-transportation-services-as-commerce-2-3-2-2'),(512,162,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(513,162,'post_views_count','23'),(514,162,'slide_template','default'),(515,1010,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(516,1010,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(517,1010,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(518,1010,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(519,1010,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(520,1010,'_wpb_vc_js_status','true'),(521,1010,'_thumbnail_id','1011'),(522,1010,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(523,1010,'post_views_count','49'),(524,1010,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(525,1010,'slide_template','default'),(526,1010,'_wp_old_slug','demand-as-transportation-services-as-commerce-3'),(527,1014,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(528,1014,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(529,1014,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(530,1014,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(531,1014,'_wpb_vc_js_status','false'),(532,1014,'_thumbnail_id','1015'),(533,1014,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(534,1014,'post_views_count','23'),(535,1014,'slide_template','default'),(536,1014,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(537,1018,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(538,1018,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(539,1018,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(540,1018,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(541,1018,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(542,1018,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(543,1018,'_wpb_vc_js_status','false'),(544,1018,'_thumbnail_id','1016'),(545,1018,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(546,1018,'post_views_count','26'),(547,1018,'slide_template','default'),(548,1018,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(549,1018,'_wp_old_slug','the-accelerator-coaching-program-for-freshers'),(550,1019,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(551,1019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(552,1019,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(553,1019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(554,1019,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(555,1019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(556,1019,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(557,1019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(558,1019,'_wpb_vc_js_status','false'),(559,1019,'_thumbnail_id','1017'),(560,1019,'_wpb_shortcodes_custom_css','.vc_custom_1524819150618{margin-top: 66px !important;}.vc_custom_1527324411336{margin-top: 60px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1524819156739{margin-top: 50px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525244566346{margin-top: 66px !important;}.vc_custom_1525246545854{margin-bottom: 25px !important;}.vc_custom_1528082159705{margin-bottom: 20px !important;}.vc_custom_1528082170619{margin-bottom: 20px !important;}.vc_custom_1528082211263{margin-bottom: 20px !important;}.vc_custom_1528082225184{margin-bottom: 20px !important;}.vc_custom_1525246552915{margin-bottom: 25px !important;}.vc_custom_1525246233811{margin-top: 45px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1525246558156{margin-bottom: 25px !important;}.vc_custom_1525246645819{margin-bottom: 25px !important;}.vc_custom_1525247261166{margin-top: 32px !important;}.vc_custom_1525247335566{margin-bottom: 25px !important;}.vc_custom_1525247443668{margin-top: 45px !important;}'),(561,1019,'post_views_count','24'),(562,1019,'slide_template','default'),(563,1019,'_wp_old_slug','demand-as-transportation-services-as-commerce'),(564,1019,'_wp_old_slug','the-accelerator-coaching-program-for-freshers'),(565,1019,'_wp_old_slug','the-changing-scenario-in-music-industry-2'),(566,1019,'_wp_old_slug','the-impact-of-music-on-our-well-being-2'),(2369,512,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2370,512,'_sku','WOO-SINGLE-1'),(2371,512,'_regular_price','3'),(2372,512,'_sale_price',''),(2373,512,'_sale_price_dates_from',''),(2374,512,'_sale_price_dates_to',''),(2375,512,'total_sales','0'),(2376,512,'_tax_status','taxable'),(2377,512,'_tax_class',''),(2378,512,'_manage_stock','no'),(2379,512,'_backorders','no'),(2380,512,'_sold_individually','no'),(2381,512,'_weight',''),(2382,512,'_length',''),(2383,512,'_width',''),(2384,512,'_height',''),(2385,512,'_upsell_ids','a:0:{}'),(2386,512,'_crosssell_ids','a:0:{}'),(2387,512,'_purchase_note',''),(2388,512,'_default_attributes','a:0:{}'),(2389,512,'_virtual','yes'),(2390,512,'_downloadable','yes'),(2391,512,'_product_image_gallery','531'),(2392,512,'_download_limit','-1'),(2393,512,'_download_expiry','-1'),(2394,512,'_stock',''),(2395,512,'_stock_status','instock'),(2396,512,'_wc_average_rating','0'),(2397,512,'_wc_rating_count','a:0:{}'),(2398,512,'_wc_review_count','0'),(2399,512,'_downloadable_files','a:1:{s:36:\"989413e9-8935-4355-b498-461ade7b185c\";a:3:{s:2:\"id\";s:36:\"989413e9-8935-4355-b498-461ade7b185c\";s:4:\"name\";s:7:\"Song #1\";s:4:\"file\";s:64:\"https://woocommerce.files.wordpress.com/2017/06/woo-single-1.ogg\";}}'),(2400,512,'_product_attributes','a:0:{}'),(2401,512,'_product_version','3.4.0'),(2402,512,'_price','3'),(2403,512,'_wp_old_slug','import-placeholder-for-woo-single-1'),(2404,512,'_thumbnail_id','530'),(2405,512,'post_views_count','19'),(2406,513,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2407,513,'_sku','WOO-SINGLE-2'),(2408,513,'_regular_price','3'),(2409,513,'_sale_price','2'),(2410,513,'_sale_price_dates_from',''),(2411,513,'_sale_price_dates_to',''),(2412,513,'total_sales','1'),(2413,513,'_tax_status','taxable'),(2414,513,'_tax_class',''),(2415,513,'_manage_stock','no'),(2416,513,'_backorders','no'),(2417,513,'_sold_individually','no'),(2418,513,'_weight',''),(2419,513,'_length',''),(2420,513,'_width',''),(2421,513,'_height',''),(2422,513,'_upsell_ids','a:0:{}'),(2423,513,'_crosssell_ids','a:0:{}'),(2424,513,'_purchase_note',''),(2425,513,'_default_attributes','a:0:{}'),(2426,513,'_virtual','yes'),(2427,513,'_downloadable','yes'),(2428,513,'_product_image_gallery','529'),(2429,513,'_download_limit','10'),(2430,513,'_download_expiry','90'),(2431,513,'_stock',''),(2432,513,'_stock_status','instock'),(2433,513,'_wc_average_rating','0'),(2434,513,'_wc_rating_count','a:0:{}'),(2435,513,'_wc_review_count','0'),(2436,513,'_downloadable_files','a:1:{s:36:\"8c8bc4ae-7c3c-4d3b-aa5f-ae2c9ca63c2d\";a:3:{s:2:\"id\";s:36:\"8c8bc4ae-7c3c-4d3b-aa5f-ae2c9ca63c2d\";s:4:\"name\";s:7:\"Song #2\";s:4:\"file\";s:64:\"https://woocommerce.files.wordpress.com/2017/06/woo-single-2.ogg\";}}'),(2437,513,'_product_attributes','a:0:{}'),(2438,513,'_product_version','3.4.0'),(2439,513,'_price','2'),(2440,513,'_wp_old_slug','import-placeholder-for-woo-single-2'),(2441,513,'_thumbnail_id','528'),(2442,513,'post_views_count','14'),(2443,514,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2444,514,'_sku','WOO-ALBUM-1'),(2445,514,'_regular_price','9'),(2446,514,'_sale_price',''),(2447,514,'_sale_price_dates_from',''),(2448,514,'_sale_price_dates_to',''),(2449,514,'total_sales','0'),(2450,514,'_tax_status','taxable'),(2451,514,'_tax_class',''),(2452,514,'_manage_stock','no'),(2453,514,'_backorders','no'),(2454,514,'_sold_individually','no'),(2455,514,'_weight',''),(2456,514,'_length',''),(2457,514,'_width',''),(2458,514,'_height',''),(2459,514,'_upsell_ids','a:0:{}'),(2460,514,'_crosssell_ids','a:0:{}'),(2461,514,'_purchase_note',''),(2462,514,'_default_attributes','a:0:{}'),(2463,514,'_virtual','no'),(2464,514,'_downloadable','no'),(2465,514,'_product_image_gallery','541'),(2466,514,'_download_limit','0'),(2467,514,'_download_expiry','0'),(2468,514,'_stock',''),(2469,514,'_stock_status','outofstock'),(2470,514,'_wc_average_rating','0'),(2471,514,'_wc_rating_count','a:0:{}'),(2472,514,'_wc_review_count','0'),(2473,514,'_downloadable_files','a:0:{}'),(2474,514,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:18:\"Large\nMedium\nSmall\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(2475,514,'_product_version','3.4.0'),(2476,514,'_wp_old_slug','import-placeholder-for-woo-album-1'),(2477,514,'_thumbnail_id','540'),(2478,514,'post_views_count','21'),(2479,514,'_children','a:0:{}'),(2480,514,'_price','9'),(2481,514,'slide_template','default'),(2482,515,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2483,515,'_sku','WOO-ALBUM-2'),(2484,515,'_regular_price','9'),(2485,515,'_sale_price',''),(2486,515,'_sale_price_dates_from',''),(2487,515,'_sale_price_dates_to',''),(2488,515,'total_sales','0'),(2489,515,'_tax_status','taxable'),(2490,515,'_tax_class',''),(2491,515,'_manage_stock','no'),(2492,515,'_backorders','no'),(2493,515,'_sold_individually','no'),(2494,515,'_weight',''),(2495,515,'_length',''),(2496,515,'_width',''),(2497,515,'_height',''),(2498,515,'_upsell_ids','a:0:{}'),(2499,515,'_crosssell_ids','a:0:{}'),(2500,515,'_purchase_note',''),(2501,515,'_default_attributes','a:0:{}'),(2502,515,'_virtual','yes'),(2503,515,'_downloadable','no'),(2504,515,'_product_image_gallery','539'),(2505,515,'_download_limit','0'),(2506,515,'_download_expiry','0'),(2507,515,'_stock',''),(2508,515,'_stock_status','instock'),(2509,515,'_wc_average_rating','0'),(2510,515,'_wc_rating_count','a:0:{}'),(2511,515,'_wc_review_count','0'),(2512,515,'_downloadable_files','a:0:{}'),(2513,515,'_product_attributes','a:0:{}'),(2514,515,'_product_version','3.4.0'),(2515,515,'_price','9'),(2516,515,'_wp_old_slug','import-placeholder-for-woo-album-2'),(2517,515,'_thumbnail_id','538'),(2518,515,'post_views_count','14'),(2519,516,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2520,516,'_sku','WOO-ALBUM-3'),(2521,516,'_regular_price','9'),(2522,516,'_sale_price',''),(2523,516,'_sale_price_dates_from',''),(2524,516,'_sale_price_dates_to',''),(2525,516,'total_sales','0'),(2526,516,'_tax_status','taxable'),(2527,516,'_tax_class',''),(2528,516,'_manage_stock','no'),(2529,516,'_backorders','no'),(2530,516,'_sold_individually','no'),(2531,516,'_weight',''),(2532,516,'_length',''),(2533,516,'_width',''),(2534,516,'_height',''),(2535,516,'_upsell_ids','a:0:{}'),(2536,516,'_crosssell_ids','a:0:{}'),(2537,516,'_purchase_note',''),(2538,516,'_default_attributes','a:0:{}'),(2539,516,'_virtual','yes'),(2540,516,'_downloadable','no'),(2541,516,'_product_image_gallery','537'),(2542,516,'_download_limit','0'),(2543,516,'_download_expiry','0'),(2544,516,'_stock',''),(2545,516,'_stock_status','instock'),(2546,516,'_wc_average_rating','0'),(2547,516,'_wc_rating_count','a:0:{}'),(2548,516,'_wc_review_count','0'),(2549,516,'_downloadable_files','a:0:{}'),(2550,516,'_product_attributes','a:0:{}'),(2551,516,'_product_version','3.4.0'),(2552,516,'_price','9'),(2553,516,'_wp_old_slug','import-placeholder-for-woo-album-3'),(2554,516,'_thumbnail_id','536'),(2555,516,'post_views_count','21'),(2556,517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2557,517,'_sku','T-SHIRT-WOO-LOGO'),(2558,517,'_regular_price','20'),(2559,517,'_sale_price','18'),(2560,517,'_sale_price_dates_from',''),(2561,517,'_sale_price_dates_to',''),(2562,517,'total_sales','0'),(2563,517,'_tax_status','taxable'),(2564,517,'_tax_class',''),(2565,517,'_manage_stock','yes'),(2566,517,'_backorders','no'),(2567,517,'_sold_individually','no'),(2568,517,'_weight',''),(2569,517,'_length',''),(2570,517,'_width',''),(2571,517,'_height',''),(2572,517,'_upsell_ids','a:1:{i:0;i:518;}'),(2573,517,'_crosssell_ids','a:0:{}'),(2574,517,'_purchase_note',''),(2575,517,'_default_attributes','a:0:{}'),(2576,517,'_virtual','no'),(2577,517,'_downloadable','no'),(2578,517,'_product_image_gallery','590'),(2579,517,'_download_limit','0'),(2580,517,'_download_expiry','0'),(2581,517,'_stock','5'),(2582,517,'_stock_status','instock'),(2583,517,'_wc_average_rating','0'),(2584,517,'_wc_rating_count','a:0:{}'),(2585,517,'_wc_review_count','0'),(2586,517,'_downloadable_files','a:0:{}'),(2587,517,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(2588,517,'_product_version','3.4.0'),(2589,517,'_price','18'),(2590,517,'_wp_old_slug','import-placeholder-for-t-shirt-woo-logo'),(2591,517,'_thumbnail_id','589'),(2592,517,'post_views_count','27'),(2593,517,'slide_template','default'),(2594,517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2595,517,'_sku','HOODIE-WOO-LOGO'),(2596,517,'_regular_price','35'),(2597,517,'_sale_price',''),(2598,517,'_sale_price_dates_from',''),(2599,517,'_sale_price_dates_to',''),(2600,517,'total_sales','0'),(2601,517,'_tax_status','taxable'),(2602,517,'_tax_class',''),(2603,517,'_manage_stock','no'),(2604,517,'_backorders','no'),(2605,517,'_sold_individually','no'),(2606,517,'_weight',''),(2607,517,'_length',''),(2608,517,'_width',''),(2609,517,'_height',''),(2610,517,'_upsell_ids','a:0:{}'),(2611,517,'_crosssell_ids','a:1:{i:0;i:517;}'),(2612,517,'_purchase_note',''),(2613,517,'_default_attributes','a:0:{}'),(2614,517,'_virtual','no'),(2615,517,'_downloadable','no'),(2616,517,'_product_image_gallery','558'),(2617,517,'_download_limit','0'),(2618,517,'_download_expiry','0'),(2619,517,'_stock',''),(2620,517,'_stock_status','instock'),(2621,517,'_wc_average_rating','0'),(2622,517,'_wc_rating_count','a:0:{}'),(2623,517,'_wc_review_count','0'),(2624,517,'_downloadable_files','a:0:{}'),(2625,517,'_product_attributes','a:0:{}'),(2626,517,'_product_version','3.4.0'),(2627,517,'_price','35'),(2628,517,'_wp_old_slug','import-placeholder-for-hoodie-woo-logo'),(2629,517,'_thumbnail_id','557'),(2630,517,'post_views_count','28'),(2631,519,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2632,519,'_sku','T-SHIRT-WOO-NINJA'),(2633,519,'_regular_price','20'),(2634,519,'_sale_price',''),(2635,519,'_sale_price_dates_from',''),(2636,519,'_sale_price_dates_to',''),(2637,519,'total_sales','0'),(2638,519,'_tax_status','taxable'),(2639,519,'_tax_class',''),(2640,519,'_manage_stock','no'),(2641,519,'_backorders','no'),(2642,519,'_sold_individually','no'),(2643,519,'_weight',''),(2644,519,'_length',''),(2645,519,'_width',''),(2646,519,'_height',''),(2647,519,'_upsell_ids','a:1:{i:0;i:520;}'),(2648,519,'_crosssell_ids','a:2:{i:0;i:525;i:1;i:524;}'),(2649,519,'_purchase_note',''),(2650,519,'_default_attributes','a:0:{}'),(2651,519,'_virtual','no'),(2652,519,'_downloadable','no'),(2653,519,'_product_image_gallery','577'),(2654,519,'_download_limit','0'),(2655,519,'_download_expiry','0'),(2656,519,'_stock',''),(2657,519,'_stock_status','instock'),(2658,519,'_wc_average_rating','0'),(2659,519,'_wc_rating_count','a:0:{}'),(2660,519,'_wc_review_count','0'),(2661,519,'_downloadable_files','a:0:{}'),(2662,519,'_product_attributes','a:0:{}'),(2663,519,'_product_version','3.4.0'),(2664,519,'_price','20'),(2665,519,'_wp_old_slug','import-placeholder-for-t-shirt-woo-ninja'),(2666,519,'_thumbnail_id','576'),(2667,519,'post_views_count','30'),(2668,519,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2669,519,'_sku','HOODIE-WOO-NINJA'),(2670,519,'_regular_price','35'),(2671,519,'_sale_price',''),(2672,519,'_sale_price_dates_from',''),(2673,519,'_sale_price_dates_to',''),(2674,519,'total_sales','0'),(2675,519,'_tax_status','taxable'),(2676,519,'_tax_class',''),(2677,519,'_manage_stock','no'),(2678,519,'_backorders','no'),(2679,519,'_sold_individually','no'),(2680,519,'_weight',''),(2681,519,'_length',''),(2682,519,'_width',''),(2683,519,'_height',''),(2684,519,'_upsell_ids','a:0:{}'),(2685,519,'_crosssell_ids','a:1:{i:0;i:519;}'),(2686,519,'_purchase_note',''),(2687,519,'_default_attributes','a:0:{}'),(2688,519,'_virtual','no'),(2689,519,'_downloadable','no'),(2690,519,'_product_image_gallery','567'),(2691,519,'_download_limit','0'),(2692,519,'_download_expiry','0'),(2693,519,'_stock',''),(2694,519,'_stock_status','instock'),(2695,519,'_wc_average_rating','0'),(2696,519,'_wc_rating_count','a:0:{}'),(2697,519,'_wc_review_count','0'),(2698,519,'_downloadable_files','a:0:{}'),(2699,519,'_product_attributes','a:0:{}'),(2700,519,'_product_version','3.4.0'),(2701,519,'_price','35'),(2702,519,'_wp_old_slug','import-placeholder-for-hoodie-woo-ninja'),(2703,519,'_thumbnail_id','566'),(2704,519,'post_views_count','33'),(2705,521,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2706,521,'_sku','T-SHIRT-PREMIUM-QUALITY'),(2707,521,'_regular_price','20'),(2708,521,'_sale_price',''),(2709,521,'_sale_price_dates_from',''),(2710,521,'_sale_price_dates_to',''),(2711,521,'total_sales','0'),(2712,521,'_tax_status','taxable'),(2713,521,'_tax_class',''),(2714,521,'_manage_stock','no'),(2715,521,'_backorders','no'),(2716,521,'_sold_individually','no'),(2717,521,'_weight',''),(2718,521,'_length',''),(2719,521,'_width',''),(2720,521,'_height',''),(2721,521,'_upsell_ids','a:0:{}'),(2722,521,'_crosssell_ids','a:0:{}'),(2723,521,'_purchase_note',''),(2724,521,'_default_attributes','a:0:{}'),(2725,521,'_virtual','no'),(2726,521,'_downloadable','no'),(2727,521,'_product_image_gallery','588'),(2728,521,'_download_limit','0'),(2729,521,'_download_expiry','0'),(2730,521,'_stock',''),(2731,521,'_stock_status','instock'),(2732,521,'_wc_average_rating','0'),(2733,521,'_wc_rating_count','a:0:{}'),(2734,521,'_wc_review_count','0'),(2735,521,'_downloadable_files','a:0:{}'),(2736,521,'_product_attributes','a:0:{}'),(2737,521,'_product_version','3.4.0'),(2738,521,'_price','20'),(2739,521,'_wp_old_slug','import-placeholder-for-t-shirt-premium-quality'),(2740,521,'_thumbnail_id','587'),(2741,521,'post_views_count','30'),(2742,522,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2743,522,'_sku','T-SHIRT-SHIP-YOUR-IDEA'),(2744,522,'_regular_price','20'),(2745,522,'_sale_price',''),(2746,522,'_sale_price_dates_from',''),(2747,522,'_sale_price_dates_to',''),(2748,522,'total_sales','0'),(2749,522,'_tax_status','taxable'),(2750,522,'_tax_class',''),(2751,522,'_manage_stock','no'),(2752,522,'_backorders','no'),(2753,522,'_sold_individually','no'),(2754,522,'_weight',''),(2755,522,'_length',''),(2756,522,'_width',''),(2757,522,'_height',''),(2758,522,'_upsell_ids','a:1:{i:0;i:523;}'),(2759,522,'_crosssell_ids','a:0:{}'),(2760,522,'_purchase_note',''),(2761,522,'_default_attributes','a:0:{}'),(2762,522,'_virtual','no'),(2763,522,'_downloadable','no'),(2764,522,'_product_image_gallery','581,582,583,584'),(2765,522,'_download_limit','0'),(2766,522,'_download_expiry','0'),(2767,522,'_stock',''),(2768,522,'_stock_status','outofstock'),(2769,522,'_wc_average_rating','5.00'),(2770,522,'_wc_rating_count','a:1:{i:5;i:1;}'),(2771,522,'_wc_review_count','1'),(2772,522,'_downloadable_files','a:0:{}'),(2773,522,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(2774,522,'_product_version','4.5.2'),(2775,522,'_wp_old_slug','import-placeholder-for-t-shirt-ship-your-idea'),(2776,522,'_thumbnail_id','580'),(2777,522,'_price','20'),(2778,522,'post_views_count','30'),(2779,522,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2780,522,'_sku','HOODIE-SHIP-YOUR-IDEA'),(2781,522,'_regular_price','30'),(2782,522,'_sale_price',''),(2783,522,'_sale_price_dates_from',''),(2784,522,'_sale_price_dates_to',''),(2785,522,'total_sales','3'),(2786,522,'_tax_status','taxable'),(2787,522,'_tax_class',''),(2788,522,'_manage_stock','no'),(2789,522,'_backorders','no'),(2790,522,'_sold_individually','no'),(2791,522,'_weight',''),(2792,522,'_length',''),(2793,522,'_width',''),(2794,522,'_height',''),(2795,522,'_upsell_ids','a:0:{}'),(2796,522,'_crosssell_ids','a:1:{i:0;i:522;}'),(2797,522,'_purchase_note',''),(2798,522,'_default_attributes','a:2:{s:8:\"pa_color\";s:5:\"black\";s:4:\"size\";s:1:\"L\";}'),(2799,522,'_virtual','no'),(2800,522,'_downloadable','no'),(2801,522,'_product_image_gallery','569,570,571'),(2802,522,'_download_limit','0'),(2803,522,'_download_expiry','0'),(2804,522,'_stock',''),(2805,522,'_stock_status','outofstock'),(2806,522,'_wc_average_rating','5.00'),(2807,522,'_wc_rating_count','a:1:{i:5;i:1;}'),(2808,522,'_wc_review_count','1'),(2809,522,'_downloadable_files','a:0:{}'),(2810,522,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:6:\"L | XL\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),(2811,522,'_product_version','4.5.2'),(2812,522,'_wp_old_slug','import-placeholder-for-hoodie-ship-your-idea'),(2813,522,'_thumbnail_id','568'),(2814,522,'_price','30'),(2815,522,'_price','35'),(2816,522,'post_views_count','77'),(2817,524,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2818,524,'_sku','T-SHIRT-NINJA-SILHOUETTE'),(2819,524,'_regular_price','20'),(2820,524,'_sale_price',''),(2821,524,'_sale_price_dates_from',''),(2822,524,'_sale_price_dates_to',''),(2823,524,'total_sales','0'),(2824,524,'_tax_status','taxable'),(2825,524,'_tax_class',''),(2826,524,'_manage_stock','no'),(2827,524,'_backorders','no'),(2828,524,'_sold_individually','no'),(2829,524,'_weight',''),(2830,524,'_length',''),(2831,524,'_width',''),(2832,524,'_height',''),(2833,524,'_upsell_ids','a:1:{i:0;i:527;}'),(2834,524,'_crosssell_ids','a:2:{i:0;i:519;i:1;i:525;}'),(2835,524,'_purchase_note',''),(2836,524,'_default_attributes','a:0:{}'),(2837,524,'_virtual','no'),(2838,524,'_downloadable','no'),(2839,524,'_product_image_gallery','579'),(2840,524,'_download_limit','0'),(2841,524,'_download_expiry','0'),(2842,524,'_stock',''),(2843,524,'_stock_status','instock'),(2844,524,'_wc_average_rating','0'),(2845,524,'_wc_rating_count','a:0:{}'),(2846,524,'_wc_review_count','0'),(2847,524,'_downloadable_files','a:0:{}'),(2848,524,'_product_attributes','a:0:{}'),(2849,524,'_product_version','3.4.0'),(2850,524,'_price','20'),(2851,524,'_wp_old_slug','import-placeholder-for-t-shirt-ninja-silhouette'),(2852,524,'_thumbnail_id','578'),(2853,524,'post_views_count','34'),(2854,525,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2855,525,'_sku','T-SHIRT-HAPPY-NINJA'),(2856,525,'_regular_price','18'),(2857,525,'_sale_price',''),(2858,525,'_sale_price_dates_from',''),(2859,525,'_sale_price_dates_to',''),(2860,525,'total_sales','0'),(2861,525,'_tax_status','taxable'),(2862,525,'_tax_class',''),(2863,525,'_manage_stock','yes'),(2864,525,'_backorders','no'),(2865,525,'_sold_individually','yes'),(2866,525,'_weight',''),(2867,525,'_length',''),(2868,525,'_width',''),(2869,525,'_height',''),(2870,525,'_upsell_ids','a:1:{i:0;i:526;}'),(2871,525,'_crosssell_ids','a:2:{i:0;i:519;i:1;i:524;}'),(2872,525,'_purchase_note',''),(2873,525,'_default_attributes','a:2:{s:8:\"pa_color\";s:5:\"black\";s:7:\"pa_size\";s:6:\"medium\";}'),(2874,525,'_virtual','no'),(2875,525,'_downloadable','no'),(2876,525,'_product_image_gallery','575'),(2877,525,'_download_limit','0'),(2878,525,'_download_expiry','0'),(2879,525,'_stock','100'),(2880,525,'_stock_status','instock'),(2881,525,'_wc_average_rating','5.00'),(2882,525,'_wc_rating_count','a:1:{i:5;i:1;}'),(2883,525,'_wc_review_count','1'),(2884,525,'_downloadable_files','a:0:{}'),(2885,525,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(2886,525,'_product_version','4.5.2'),(2887,525,'_wp_old_slug','import-placeholder-for-t-shirt-happy-ninja'),(2888,525,'_thumbnail_id','574'),(2889,525,'post_views_count','56'),(2890,525,'slide_template','default'),(2891,525,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2892,525,'_sku','HOODIE-HAPPY-NINJA'),(2893,525,'_regular_price','35'),(2894,525,'_sale_price',''),(2895,525,'_sale_price_dates_from',''),(2896,525,'_sale_price_dates_to',''),(2897,525,'total_sales','1'),(2898,525,'_tax_status','taxable'),(2899,525,'_tax_class',''),(2900,525,'_manage_stock','no'),(2901,525,'_backorders','no'),(2902,525,'_sold_individually','no'),(2903,525,'_weight',''),(2904,525,'_length',''),(2905,525,'_width',''),(2906,525,'_height',''),(2907,525,'_upsell_ids','a:0:{}'),(2908,525,'_crosssell_ids','a:1:{i:0;i:525;}'),(2909,525,'_purchase_note',''),(2910,525,'_default_attributes','a:0:{}'),(2911,525,'_virtual','no'),(2912,525,'_downloadable','no'),(2913,525,'_product_image_gallery','562'),(2914,525,'_download_limit','0'),(2915,525,'_download_expiry','0'),(2916,525,'_stock',''),(2917,525,'_stock_status','instock'),(2918,525,'_wc_average_rating','5.00'),(2919,525,'_wc_rating_count','a:1:{i:5;i:1;}'),(2920,525,'_wc_review_count','1'),(2921,525,'_downloadable_files','a:0:{}'),(2922,525,'_product_attributes','a:0:{}'),(2923,525,'_product_version','4.5.2'),(2924,525,'_price','35'),(2925,525,'_wp_old_slug','import-placeholder-for-hoodie-happy-ninja'),(2926,525,'_thumbnail_id','561'),(2927,525,'post_views_count','47'),(2928,524,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2929,524,'_sku','HOODIE-NINJA-SILHOUETTE'),(2930,524,'_regular_price','30'),(2931,524,'_sale_price',''),(2932,524,'_sale_price_dates_from',''),(2933,524,'_sale_price_dates_to',''),(2934,524,'total_sales','0'),(2935,524,'_tax_status','taxable'),(2936,524,'_tax_class',''),(2937,524,'_manage_stock','no'),(2938,524,'_backorders','no'),(2939,524,'_sold_individually','no'),(2940,524,'_weight',''),(2941,524,'_length',''),(2942,524,'_width',''),(2943,524,'_height',''),(2944,524,'_upsell_ids','a:0:{}'),(2945,524,'_crosssell_ids','a:1:{i:0;i:524;}'),(2946,524,'_purchase_note',''),(2947,524,'_default_attributes','a:0:{}'),(2948,524,'_virtual','no'),(2949,524,'_downloadable','no'),(2950,524,'_product_image_gallery','560'),(2951,524,'_download_limit','0'),(2952,524,'_download_expiry','0'),(2953,524,'_stock',''),(2954,524,'_stock_status','instock'),(2955,524,'_wc_average_rating','0'),(2956,524,'_wc_rating_count','a:0:{}'),(2957,524,'_wc_review_count','0'),(2958,524,'_downloadable_files','a:0:{}'),(2959,524,'_product_attributes','a:0:{}'),(2960,524,'_product_version','3.4.0'),(2961,524,'_price','30'),(2962,524,'_wp_old_slug','import-placeholder-for-hoodie-ninja-silhouette'),(2963,524,'_thumbnail_id','559'),(2964,524,'_product_url','https://mercantile.wordpress.org/product/wordpress-logo-black-zip-hoodie/'),(2965,524,'_button_text','Buy on WordPress Swag Store'),(2966,524,'post_views_count','26'),(2967,532,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2968,532,'_children','a:2:{i:0;i:512;i:1;i:513;}'),(2969,532,'_sku','WOO-SINGLES'),(2970,532,'_regular_price',''),(2971,532,'_sale_price',''),(2972,532,'_sale_price_dates_from',''),(2973,532,'_sale_price_dates_to',''),(2974,532,'total_sales','0'),(2975,532,'_tax_status','taxable'),(2976,532,'_tax_class',''),(2977,532,'_manage_stock','no'),(2978,532,'_backorders','no'),(2979,532,'_sold_individually','no'),(2980,532,'_weight',''),(2981,532,'_length',''),(2982,532,'_width',''),(2983,532,'_height',''),(2984,532,'_upsell_ids','a:2:{i:0;i:514;i:1;i:515;}'),(2985,532,'_crosssell_ids','a:1:{i:0;i:516;}'),(2986,532,'_purchase_note',''),(2987,532,'_default_attributes','a:0:{}'),(2988,532,'_virtual','no'),(2989,532,'_downloadable','no'),(2990,532,'_product_image_gallery',''),(2991,532,'_download_limit','0'),(2992,532,'_download_expiry','0'),(2993,532,'_thumbnail_id','529'),(2994,532,'_stock',''),(2995,532,'_stock_status','instock'),(2996,532,'_wc_average_rating','0'),(2997,532,'_wc_rating_count','a:0:{}'),(2998,532,'_wc_review_count','0'),(2999,532,'_downloadable_files','a:0:{}'),(3000,532,'_product_attributes','a:0:{}'),(3001,532,'_product_version','3.4.0'),(3002,532,'_price',''),(3003,532,'_price',''),(3004,532,'post_views_count','12'),(3079,199,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3080,199,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3081,199,'_wpb_vc_js_status','true'),(3082,199,'post_views_count','266'),(3083,199,'_thumbnail_id','207'),(3084,199,'ef3-project_style','1'),(3085,199,'ef3-project_client_image','a:9:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:5:\"title\";s:7:\"avatar1\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(3086,199,'ef3-project_client_name','NORMAY ANNI'),(3087,199,'ef3-project_client_position','Graphic Designer'),(3088,199,'ef3-project_link',''),(3089,199,'ef3-project_start_date','21 August, 2016 '),(3090,199,'ef3-project_end_date','21 August, 2018'),(3091,199,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3092,199,'ef3-project_client_title','CLIENT INFORMATION'),(3093,199,'ef3-project_link_demo','www.livedemo.com'),(3094,199,'ef3-project_link_launch','#'),(3095,199,'ef3-project_link_title','LAUNCH PROJECT'),(3096,199,'ef3-project_category','Finance & Legal'),(3097,199,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3098,199,'slide_template','default'),(3099,535,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3100,535,'_sku','WOO-ALBUM-4'),(3101,535,'_regular_price','9'),(3102,535,'_sale_price',''),(3103,535,'_sale_price_dates_from',''),(3104,535,'_sale_price_dates_to',''),(3105,535,'total_sales','0'),(3106,535,'_tax_status','taxable'),(3107,535,'_tax_class',''),(3108,535,'_manage_stock','no'),(3109,535,'_backorders','no'),(3110,535,'_sold_individually','no'),(3111,535,'_weight',''),(3112,535,'_length',''),(3113,535,'_width',''),(3114,535,'_height',''),(3115,535,'_upsell_ids','a:0:{}'),(3116,535,'_crosssell_ids','a:0:{}'),(3117,535,'_purchase_note',''),(3118,535,'_default_attributes','a:0:{}'),(3119,535,'_virtual','yes'),(3120,535,'_downloadable','no'),(3121,535,'_product_image_gallery','534'),(3122,535,'_download_limit','0'),(3123,535,'_download_expiry','0'),(3124,535,'_thumbnail_id','533'),(3125,535,'_stock',''),(3126,535,'_stock_status','instock'),(3127,535,'_wc_average_rating','0'),(3128,535,'_wc_rating_count','a:0:{}'),(3129,535,'_wc_review_count','0'),(3130,535,'_downloadable_files','a:0:{}'),(3131,535,'_product_attributes','a:0:{}'),(3132,535,'_product_version','3.4.0'),(3133,535,'_price','9'),(3134,535,'post_views_count','17'),(3135,544,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3136,544,'_sku','POSTER-WOO-LOGO'),(3137,544,'_regular_price','15'),(3138,544,'_sale_price',''),(3139,544,'_sale_price_dates_from',''),(3140,544,'_sale_price_dates_to',''),(3141,544,'total_sales','0'),(3142,544,'_tax_status','taxable'),(3143,544,'_tax_class',''),(3144,544,'_manage_stock','no'),(3145,544,'_backorders','no'),(3146,544,'_sold_individually','no'),(3147,544,'_weight',''),(3148,544,'_length',''),(3149,544,'_width',''),(3150,544,'_height',''),(3151,544,'_upsell_ids','a:0:{}'),(3152,544,'_crosssell_ids','a:2:{i:0;i:517;i:1;i:518;}'),(3153,544,'_purchase_note',''),(3154,544,'_default_attributes','a:0:{}'),(3155,544,'_virtual','no'),(3156,544,'_downloadable','no'),(3157,544,'_product_image_gallery','543'),(3158,544,'_download_limit','0'),(3159,544,'_download_expiry','0'),(3160,544,'_thumbnail_id','542'),(3161,544,'_stock',''),(3162,544,'_stock_status','instock'),(3163,544,'_wc_average_rating','0'),(3164,544,'_wc_rating_count','a:0:{}'),(3165,544,'_wc_review_count','0'),(3166,544,'_downloadable_files','a:0:{}'),(3167,544,'_product_attributes','a:0:{}'),(3168,544,'_product_version','3.4.0'),(3169,544,'_price','15'),(3170,544,'post_views_count','9'),(3171,547,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3172,547,'_sku','POSTER-WOO-NINJA'),(3173,547,'_regular_price','15'),(3174,547,'_sale_price',''),(3175,547,'_sale_price_dates_from',''),(3176,547,'_sale_price_dates_to',''),(3177,547,'total_sales','0'),(3178,547,'_tax_status','taxable'),(3179,547,'_tax_class',''),(3180,547,'_manage_stock','no'),(3181,547,'_backorders','no'),(3182,547,'_sold_individually','no'),(3183,547,'_weight',''),(3184,547,'_length',''),(3185,547,'_width',''),(3186,547,'_height',''),(3187,547,'_upsell_ids','a:0:{}'),(3188,547,'_crosssell_ids','a:2:{i:0;i:519;i:1;i:520;}'),(3189,547,'_purchase_note',''),(3190,547,'_default_attributes','a:0:{}'),(3191,547,'_virtual','no'),(3192,547,'_downloadable','no'),(3193,547,'_product_image_gallery','546'),(3194,547,'_download_limit','0'),(3195,547,'_download_expiry','0'),(3196,547,'_thumbnail_id','545'),(3197,547,'_stock',''),(3198,547,'_stock_status','instock'),(3199,547,'_wc_average_rating','0'),(3200,547,'_wc_rating_count','a:0:{}'),(3201,547,'_wc_review_count','0'),(3202,547,'_downloadable_files','a:0:{}'),(3203,547,'_product_attributes','a:0:{}'),(3204,547,'_product_version','3.4.0'),(3205,547,'_price','15'),(3206,547,'post_views_count','9'),(3207,550,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3208,550,'_sku','POSTER-PREMIUM-QUALITY'),(3209,550,'_regular_price','15'),(3210,550,'_sale_price','12'),(3211,550,'_sale_price_dates_from',''),(3212,550,'_sale_price_dates_to',''),(3213,550,'total_sales','0'),(3214,550,'_tax_status','taxable'),(3215,550,'_tax_class',''),(3216,550,'_manage_stock','no'),(3217,550,'_backorders','no'),(3218,550,'_sold_individually','no'),(3219,550,'_weight',''),(3220,550,'_length',''),(3221,550,'_width',''),(3222,550,'_height',''),(3223,550,'_upsell_ids','a:1:{i:0;i:521;}'),(3224,550,'_crosssell_ids','a:0:{}'),(3225,550,'_purchase_note',''),(3226,550,'_default_attributes','a:0:{}'),(3227,550,'_virtual','no'),(3228,550,'_downloadable','no'),(3229,550,'_product_image_gallery','549'),(3230,550,'_download_limit','0'),(3231,550,'_download_expiry','0'),(3232,550,'_thumbnail_id','548'),(3233,550,'_stock',''),(3234,550,'_stock_status','instock'),(3235,550,'_wc_average_rating','0'),(3236,550,'_wc_rating_count','a:0:{}'),(3237,550,'_wc_review_count','0'),(3238,550,'_downloadable_files','a:0:{}'),(3239,550,'_product_attributes','a:0:{}'),(3240,550,'_product_version','3.4.0'),(3241,550,'_price','12'),(3242,550,'post_views_count','19'),(3243,553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3244,553,'_sku','POSTER-FLYING-NINJA'),(3245,553,'_regular_price','15'),(3246,553,'_sale_price','12'),(3247,553,'_sale_price_dates_from',''),(3248,553,'_sale_price_dates_to',''),(3249,553,'total_sales','0'),(3250,553,'_tax_status','taxable'),(3251,553,'_tax_class',''),(3252,553,'_manage_stock','yes'),(3253,553,'_backorders','yes'),(3254,553,'_sold_individually','no'),(3255,553,'_weight',''),(3256,553,'_length',''),(3257,553,'_width',''),(3258,553,'_height',''),(3259,553,'_upsell_ids','a:0:{}'),(3260,553,'_crosssell_ids','a:0:{}'),(3261,553,'_purchase_note',''),(3262,553,'_default_attributes','a:2:{s:8:\"pa_color\";s:5:\"black\";s:7:\"pa_size\";s:6:\"medium\";}'),(3263,553,'_virtual','no'),(3264,553,'_downloadable','no'),(3265,553,'_product_image_gallery','552'),(3266,553,'_download_limit','0'),(3267,553,'_download_expiry','0'),(3268,553,'_thumbnail_id','551'),(3269,553,'_stock','999'),(3270,553,'_stock_status','instock'),(3271,553,'_wc_average_rating','0'),(3272,553,'_wc_rating_count','a:0:{}'),(3273,553,'_wc_review_count','0'),(3274,553,'_downloadable_files','a:0:{}'),(3275,553,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(3276,553,'_product_version','3.4.0'),(3277,553,'post_views_count','32'),(3278,553,'slide_template','default'),(3279,556,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3280,556,'_sku','POSTER-SHIP-YOUR-IDEA'),(3281,556,'_regular_price','15'),(3282,556,'_sale_price',''),(3283,556,'_sale_price_dates_from',''),(3284,556,'_sale_price_dates_to',''),(3285,556,'total_sales','1'),(3286,556,'_tax_status','taxable'),(3287,556,'_tax_class',''),(3288,556,'_manage_stock','no'),(3289,556,'_backorders','no'),(3290,556,'_sold_individually','no'),(3291,556,'_weight',''),(3292,556,'_length',''),(3293,556,'_width',''),(3294,556,'_height',''),(3295,556,'_upsell_ids','a:2:{i:0;i:522;i:1;i:523;}'),(3296,556,'_crosssell_ids','a:2:{i:0;i:522;i:1;i:523;}'),(3297,556,'_purchase_note',''),(3298,556,'_default_attributes','a:0:{}'),(3299,556,'_virtual','no'),(3300,556,'_downloadable','no'),(3301,556,'_product_image_gallery','555'),(3302,556,'_download_limit','0'),(3303,556,'_download_expiry','0'),(3304,556,'_thumbnail_id','554'),(3305,556,'_stock',''),(3306,556,'_stock_status','instock'),(3307,556,'_wc_average_rating','0'),(3308,556,'_wc_rating_count','a:0:{}'),(3309,556,'_wc_review_count','0'),(3310,556,'_downloadable_files','a:0:{}'),(3311,556,'_product_attributes','a:0:{}'),(3312,556,'_product_version','3.4.0'),(3313,556,'_price','15'),(3314,556,'post_views_count','20'),(3315,565,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3316,565,'_sku','HOODIE-PATIENT-NINJA'),(3317,565,'_regular_price','35'),(3318,565,'_sale_price',''),(3319,565,'_sale_price_dates_from',''),(3320,565,'_sale_price_dates_to',''),(3321,565,'total_sales','2'),(3322,565,'_tax_status','taxable'),(3323,565,'_tax_class',''),(3324,565,'_manage_stock','no'),(3325,565,'_backorders','no'),(3326,565,'_sold_individually','no'),(3327,565,'_weight',''),(3328,565,'_length',''),(3329,565,'_width',''),(3330,565,'_height',''),(3331,565,'_upsell_ids','a:0:{}'),(3332,565,'_crosssell_ids','a:1:{i:0;i:526;}'),(3333,565,'_purchase_note',''),(3334,565,'_default_attributes','a:0:{}'),(3335,565,'_virtual','no'),(3336,565,'_downloadable','no'),(3337,565,'_product_image_gallery','564'),(3338,565,'_download_limit','0'),(3339,565,'_download_expiry','0'),(3340,565,'_thumbnail_id','563'),(3341,565,'_stock',''),(3342,565,'_stock_status','instock'),(3343,565,'_wc_average_rating','0'),(3344,565,'_wc_rating_count','a:0:{}'),(3345,565,'_wc_review_count','0'),(3346,565,'_downloadable_files','a:0:{}'),(3347,565,'_product_attributes','a:0:{}'),(3348,565,'_product_version','3.4.0'),(3349,565,'_price','35'),(3350,565,'post_views_count','32'),(3351,572,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3352,572,'_variation_description',''),(3353,572,'_sku','HOODIE-SHIP-YOUR-IDEA-BLUE-XL'),(3354,572,'_regular_price','35'),(3355,572,'_sale_price','30'),(3356,572,'_sale_price_dates_from',''),(3357,572,'_sale_price_dates_to',''),(3358,572,'total_sales','0'),(3359,572,'_tax_status','taxable'),(3360,572,'_tax_class',''),(3361,572,'_manage_stock','no'),(3362,572,'_backorders','no'),(3363,572,'_sold_individually','no'),(3364,572,'_weight',''),(3365,572,'_length',''),(3366,572,'_width',''),(3367,572,'_height',''),(3368,572,'_upsell_ids','a:0:{}'),(3369,572,'_crosssell_ids','a:1:{i:0;i:522;}'),(3370,572,'_purchase_note',''),(3371,572,'_default_attributes','a:0:{}'),(3372,572,'_virtual','no'),(3373,572,'_downloadable','no'),(3374,572,'_product_image_gallery',''),(3375,572,'_download_limit','0'),(3376,572,'_download_expiry','0'),(3377,572,'_thumbnail_id','571'),(3378,572,'_stock',''),(3379,572,'_stock_status','instock'),(3380,572,'_wc_average_rating','0'),(3381,572,'_wc_rating_count','a:0:{}'),(3382,572,'_wc_review_count','0'),(3383,572,'_downloadable_files','a:0:{}'),(3384,572,'attribute_pa_color','blue'),(3385,572,'attribute_size','XL'),(3386,572,'_price','30'),(3387,572,'_product_version','3.4.0'),(3388,573,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3389,573,'_variation_description',''),(3390,573,'_sku','HOODIE-SHIP-YOUR-IDEA-BLACK-L'),(3391,573,'_regular_price','35'),(3392,573,'_sale_price',''),(3393,573,'_sale_price_dates_from',''),(3394,573,'_sale_price_dates_to',''),(3395,573,'total_sales','0'),(3396,573,'_tax_status','taxable'),(3397,573,'_tax_class',''),(3398,573,'_manage_stock','no'),(3399,573,'_backorders','no'),(3400,573,'_sold_individually','no'),(3401,573,'_weight',''),(3402,573,'_length',''),(3403,573,'_width',''),(3404,573,'_height',''),(3405,573,'_upsell_ids','a:0:{}'),(3406,573,'_crosssell_ids','a:1:{i:0;i:522;}'),(3407,573,'_purchase_note',''),(3408,573,'_default_attributes','a:0:{}'),(3409,573,'_virtual','no'),(3410,573,'_downloadable','no'),(3411,573,'_product_image_gallery',''),(3412,573,'_download_limit','0'),(3413,573,'_download_expiry','0'),(3414,573,'_thumbnail_id','568'),(3415,573,'_stock',''),(3416,573,'_stock_status','instock'),(3417,573,'_wc_average_rating','0'),(3418,573,'_wc_rating_count','a:0:{}'),(3419,573,'_wc_review_count','0'),(3420,573,'_downloadable_files','a:0:{}'),(3421,573,'attribute_pa_color','black'),(3422,573,'attribute_size','L'),(3423,573,'_price','35'),(3424,573,'_product_version','3.4.0'),(3425,585,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3426,585,'_variation_description',''),(3427,585,'_sku','T-SHIRT-SHIP-YOUR-IDEA-GREEN'),(3428,585,'_regular_price','20'),(3429,585,'_sale_price',''),(3430,585,'_sale_price_dates_from',''),(3431,585,'_sale_price_dates_to',''),(3432,585,'total_sales','0'),(3433,585,'_tax_status','taxable'),(3434,585,'_tax_class',''),(3435,585,'_manage_stock','no'),(3436,585,'_backorders','no'),(3437,585,'_sold_individually','no'),(3438,585,'_weight',''),(3439,585,'_length',''),(3440,585,'_width',''),(3441,585,'_height',''),(3442,585,'_upsell_ids','a:0:{}'),(3443,585,'_crosssell_ids','a:0:{}'),(3444,585,'_purchase_note',''),(3445,585,'_default_attributes','a:0:{}'),(3446,585,'_virtual','no'),(3447,585,'_downloadable','no'),(3448,585,'_product_image_gallery',''),(3449,585,'_download_limit','0'),(3450,585,'_download_expiry','0'),(3451,585,'_thumbnail_id','582'),(3452,585,'_stock',''),(3453,585,'_stock_status','instock'),(3454,585,'_wc_average_rating','0'),(3455,585,'_wc_rating_count','a:0:{}'),(3456,585,'_wc_review_count','0'),(3457,585,'_downloadable_files','a:0:{}'),(3458,585,'attribute_pa_color','green'),(3459,585,'_price','20'),(3460,585,'_product_version','3.4.0'),(3461,586,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3462,586,'_variation_description',''),(3463,586,'_sku','T-SHIRT-SHIP-YOUR-IDEA-BLACK'),(3464,586,'_regular_price','20'),(3465,586,'_sale_price',''),(3466,586,'_sale_price_dates_from',''),(3467,586,'_sale_price_dates_to',''),(3468,586,'total_sales','0'),(3469,586,'_tax_status','taxable'),(3470,586,'_tax_class',''),(3471,586,'_manage_stock','no'),(3472,586,'_backorders','no'),(3473,586,'_sold_individually','no'),(3474,586,'_weight',''),(3475,586,'_length',''),(3476,586,'_width',''),(3477,586,'_height',''),(3478,586,'_upsell_ids','a:0:{}'),(3479,586,'_crosssell_ids','a:0:{}'),(3480,586,'_purchase_note',''),(3481,586,'_default_attributes','a:0:{}'),(3482,586,'_virtual','no'),(3483,586,'_downloadable','no'),(3484,586,'_product_image_gallery',''),(3485,586,'_download_limit','0'),(3486,586,'_download_expiry','0'),(3487,586,'_thumbnail_id','584'),(3488,586,'_stock',''),(3489,586,'_stock_status','instock'),(3490,586,'_wc_average_rating','0'),(3491,586,'_wc_rating_count','a:0:{}'),(3492,586,'_wc_review_count','0'),(3493,586,'_downloadable_files','a:0:{}'),(3494,586,'attribute_pa_color','black'),(3495,586,'_price','20'),(3496,586,'_product_version','3.4.0'),(3497,1288,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3498,1288,'_variation_description',''),(3499,1288,'_sku',''),(3500,1288,'_regular_price',''),(3501,1288,'_sale_price',''),(3502,1288,'_sale_price_dates_from',''),(3503,1288,'_sale_price_dates_to',''),(3504,1288,'total_sales','0'),(3505,1288,'_tax_status','taxable'),(3506,1288,'_tax_class','parent'),(3507,1288,'_manage_stock','no'),(3508,1288,'_backorders','no'),(3509,1288,'_sold_individually','no'),(3510,1288,'_weight',''),(3511,1288,'_length',''),(3512,1288,'_width',''),(3513,1288,'_height',''),(3514,1288,'_upsell_ids','a:0:{}'),(3515,1288,'_crosssell_ids','a:0:{}'),(3516,1288,'_purchase_note',''),(3517,1288,'_default_attributes','a:0:{}'),(3518,1288,'_virtual','no'),(3519,1288,'_downloadable','no'),(3520,1288,'_product_image_gallery',''),(3521,1288,'_download_limit','-1'),(3522,1288,'_download_expiry','-1'),(3523,1288,'_stock',''),(3524,1288,'_stock_status','instock'),(3525,1288,'_wc_average_rating','0'),(3526,1288,'_wc_rating_count','a:0:{}'),(3527,1288,'_wc_review_count','0'),(3528,1288,'_downloadable_files','a:0:{}'),(3529,1288,'_price',''),(3530,1288,'_product_version','3.4.0'),(3531,1288,'attribute_pa_color','black'),(3532,1288,'attribute_pa_size','large'),(3533,1289,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3534,1289,'_variation_description',''),(3535,1289,'_sku',''),(3536,1289,'_regular_price',''),(3537,1289,'_sale_price',''),(3538,1289,'_sale_price_dates_from',''),(3539,1289,'_sale_price_dates_to',''),(3540,1289,'total_sales','0'),(3541,1289,'_tax_status','taxable'),(3542,1289,'_tax_class','parent'),(3543,1289,'_manage_stock','no'),(3544,1289,'_backorders','no'),(3545,1289,'_sold_individually','no'),(3546,1289,'_weight',''),(3547,1289,'_length',''),(3548,1289,'_width',''),(3549,1289,'_height',''),(3550,1289,'_upsell_ids','a:0:{}'),(3551,1289,'_crosssell_ids','a:0:{}'),(3552,1289,'_purchase_note',''),(3553,1289,'_default_attributes','a:0:{}'),(3554,1289,'_virtual','no'),(3555,1289,'_downloadable','no'),(3556,1289,'_product_image_gallery',''),(3557,1289,'_download_limit','-1'),(3558,1289,'_download_expiry','-1'),(3559,1289,'_stock',''),(3560,1289,'_stock_status','instock'),(3561,1289,'_wc_average_rating','0'),(3562,1289,'_wc_rating_count','a:0:{}'),(3563,1289,'_wc_review_count','0'),(3564,1289,'_downloadable_files','a:0:{}'),(3565,1289,'attribute_pa_color','blue'),(3566,1289,'attribute_pa_size','medium'),(3567,1289,'_price',''),(3568,1289,'_product_version','3.4.0'),(3569,1290,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3570,1290,'_variation_description',''),(3571,1290,'_sku',''),(3572,1290,'_regular_price',''),(3573,1290,'_sale_price',''),(3574,1290,'_sale_price_dates_from',''),(3575,1290,'_sale_price_dates_to',''),(3576,1290,'total_sales','0'),(3577,1290,'_tax_status','taxable'),(3578,1290,'_tax_class','parent'),(3579,1290,'_manage_stock','no'),(3580,1290,'_backorders','no'),(3581,1290,'_sold_individually','no'),(3582,1290,'_weight',''),(3583,1290,'_length',''),(3584,1290,'_width',''),(3585,1290,'_height',''),(3586,1290,'_upsell_ids','a:0:{}'),(3587,1290,'_crosssell_ids','a:0:{}'),(3588,1290,'_purchase_note',''),(3589,1290,'_default_attributes','a:0:{}'),(3590,1290,'_virtual','no'),(3591,1290,'_downloadable','no'),(3592,1290,'_product_image_gallery',''),(3593,1290,'_download_limit','-1'),(3594,1290,'_download_expiry','-1'),(3595,1290,'_stock',''),(3596,1290,'_stock_status','instock'),(3597,1290,'_wc_average_rating','0'),(3598,1290,'_wc_rating_count','a:0:{}'),(3599,1290,'_wc_review_count','0'),(3600,1290,'_downloadable_files','a:0:{}'),(3601,1290,'attribute_pa_color','green'),(3602,1290,'attribute_pa_size','small'),(3603,1290,'_price',''),(3604,1290,'_product_version','3.4.0'),(3605,1291,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3606,1291,'_variation_description',''),(3607,1291,'_sku',''),(3608,1291,'_regular_price',''),(3609,1291,'_sale_price',''),(3610,1291,'_sale_price_dates_from',''),(3611,1291,'_sale_price_dates_to',''),(3612,1291,'total_sales','0'),(3613,1291,'_tax_status','taxable'),(3614,1291,'_tax_class','parent'),(3615,1291,'_manage_stock','no'),(3616,1291,'_backorders','no'),(3617,1291,'_sold_individually','no'),(3618,1291,'_weight',''),(3619,1291,'_length',''),(3620,1291,'_width',''),(3621,1291,'_height',''),(3622,1291,'_upsell_ids','a:0:{}'),(3623,1291,'_crosssell_ids','a:0:{}'),(3624,1291,'_purchase_note',''),(3625,1291,'_default_attributes','a:0:{}'),(3626,1291,'_virtual','no'),(3627,1291,'_downloadable','no'),(3628,1291,'_product_image_gallery',''),(3629,1291,'_download_limit','-1'),(3630,1291,'_download_expiry','-1'),(3631,1291,'_stock',''),(3632,1291,'_stock_status','instock'),(3633,1291,'_wc_average_rating','0'),(3634,1291,'_wc_rating_count','a:0:{}'),(3635,1291,'_wc_review_count','0'),(3636,1291,'_downloadable_files','a:0:{}'),(3637,1291,'attribute_pa_color','black'),(3638,1291,'attribute_pa_size','small'),(3639,1291,'_price',''),(3640,1291,'_product_version','3.4.0'),(3641,1292,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3642,1292,'_variation_description',''),(3643,1292,'_sku',''),(3644,1292,'_regular_price',''),(3645,1292,'_sale_price',''),(3646,1292,'_sale_price_dates_from',''),(3647,1292,'_sale_price_dates_to',''),(3648,1292,'total_sales','0'),(3649,1292,'_tax_status','taxable'),(3650,1292,'_tax_class','parent'),(3651,1292,'_manage_stock','no'),(3652,1292,'_backorders','no'),(3653,1292,'_sold_individually','no'),(3654,1292,'_weight',''),(3655,1292,'_length',''),(3656,1292,'_width',''),(3657,1292,'_height',''),(3658,1292,'_upsell_ids','a:0:{}'),(3659,1292,'_crosssell_ids','a:0:{}'),(3660,1292,'_purchase_note',''),(3661,1292,'_default_attributes','a:0:{}'),(3662,1292,'_virtual','no'),(3663,1292,'_downloadable','no'),(3664,1292,'_product_image_gallery',''),(3665,1292,'_download_limit','-1'),(3666,1292,'_download_expiry','-1'),(3667,1292,'_stock',''),(3668,1292,'_stock_status','instock'),(3669,1292,'_wc_average_rating','0'),(3670,1292,'_wc_rating_count','a:0:{}'),(3671,1292,'_wc_review_count','0'),(3672,1292,'_downloadable_files','a:0:{}'),(3673,1292,'attribute_pa_color','blue'),(3674,1292,'attribute_pa_size','small'),(3675,1292,'_price',''),(3676,1292,'_product_version','3.4.0'),(3677,1293,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3678,1293,'_variation_description',''),(3679,1293,'_sku',''),(3680,1293,'_regular_price',''),(3681,1293,'_sale_price',''),(3682,1293,'_sale_price_dates_from',''),(3683,1293,'_sale_price_dates_to',''),(3684,1293,'total_sales','0'),(3685,1293,'_tax_status','taxable'),(3686,1293,'_tax_class','parent'),(3687,1293,'_manage_stock','no'),(3688,1293,'_backorders','no'),(3689,1293,'_sold_individually','no'),(3690,1293,'_weight',''),(3691,1293,'_length',''),(3692,1293,'_width',''),(3693,1293,'_height',''),(3694,1293,'_upsell_ids','a:0:{}'),(3695,1293,'_crosssell_ids','a:0:{}'),(3696,1293,'_purchase_note',''),(3697,1293,'_default_attributes','a:0:{}'),(3698,1293,'_virtual','no'),(3699,1293,'_downloadable','no'),(3700,1293,'_product_image_gallery',''),(3701,1293,'_download_limit','-1'),(3702,1293,'_download_expiry','-1'),(3703,1293,'_stock',''),(3704,1293,'_stock_status','instock'),(3705,1293,'_wc_average_rating','0'),(3706,1293,'_wc_rating_count','a:0:{}'),(3707,1293,'_wc_review_count','0'),(3708,1293,'_downloadable_files','a:0:{}'),(3709,1293,'_price',''),(3710,1293,'_product_version','3.4.0'),(3711,1293,'attribute_pa_color','black'),(3712,1293,'attribute_pa_size','large'),(3713,1294,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3714,1294,'_variation_description',''),(3715,1294,'_sku',''),(3716,1294,'_regular_price',''),(3717,1294,'_sale_price',''),(3718,1294,'_sale_price_dates_from',''),(3719,1294,'_sale_price_dates_to',''),(3720,1294,'total_sales','0'),(3721,1294,'_tax_status','taxable'),(3722,1294,'_tax_class','parent'),(3723,1294,'_manage_stock','no'),(3724,1294,'_backorders','no'),(3725,1294,'_sold_individually','no'),(3726,1294,'_weight',''),(3727,1294,'_length',''),(3728,1294,'_width',''),(3729,1294,'_height',''),(3730,1294,'_upsell_ids','a:0:{}'),(3731,1294,'_crosssell_ids','a:0:{}'),(3732,1294,'_purchase_note',''),(3733,1294,'_default_attributes','a:0:{}'),(3734,1294,'_virtual','no'),(3735,1294,'_downloadable','no'),(3736,1294,'_product_image_gallery',''),(3737,1294,'_download_limit','-1'),(3738,1294,'_download_expiry','-1'),(3739,1294,'_stock',''),(3740,1294,'_stock_status','instock'),(3741,1294,'_wc_average_rating','0'),(3742,1294,'_wc_rating_count','a:0:{}'),(3743,1294,'_wc_review_count','0'),(3744,1294,'_downloadable_files','a:0:{}'),(3745,1294,'attribute_pa_color','blue'),(3746,1294,'_price',''),(3747,1294,'_product_version','3.4.0'),(3748,1294,'attribute_pa_size','large'),(3749,1295,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3750,1295,'_variation_description',''),(3751,1295,'_sku',''),(3752,1295,'_regular_price',''),(3753,1295,'_sale_price',''),(3754,1295,'_sale_price_dates_from',''),(3755,1295,'_sale_price_dates_to',''),(3756,1295,'total_sales','0'),(3757,1295,'_tax_status','taxable'),(3758,1295,'_tax_class','parent'),(3759,1295,'_manage_stock','no'),(3760,1295,'_backorders','no'),(3761,1295,'_sold_individually','no'),(3762,1295,'_weight',''),(3763,1295,'_length',''),(3764,1295,'_width',''),(3765,1295,'_height',''),(3766,1295,'_upsell_ids','a:0:{}'),(3767,1295,'_crosssell_ids','a:0:{}'),(3768,1295,'_purchase_note',''),(3769,1295,'_default_attributes','a:0:{}'),(3770,1295,'_virtual','no'),(3771,1295,'_downloadable','no'),(3772,1295,'_product_image_gallery',''),(3773,1295,'_download_limit','-1'),(3774,1295,'_download_expiry','-1'),(3775,1295,'_stock',''),(3776,1295,'_stock_status','instock'),(3777,1295,'_wc_average_rating','0'),(3778,1295,'_wc_rating_count','a:0:{}'),(3779,1295,'_wc_review_count','0'),(3780,1295,'_downloadable_files','a:0:{}'),(3781,1295,'attribute_pa_color','green'),(3782,1295,'_price',''),(3783,1295,'_product_version','3.4.0'),(3784,1295,'attribute_pa_size','large'),(3785,230,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3786,230,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3787,230,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3788,230,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3789,230,'_wpb_vc_js_status','true'),(3790,230,'post_views_count','146'),(3791,230,'ef3-project_style','1'),(3792,230,'ef3-project_client_image','a:9:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(3793,230,'ef3-project_client_name','NORMAY ANNI'),(3794,230,'ef3-project_client_position','Graphic Designer'),(3795,230,'ef3-project_link',''),(3796,230,'ef3-project_start_date','21 August, 2016 '),(3797,230,'ef3-project_end_date','21 August, 2018'),(3798,230,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3799,230,'ef3-project_client_title','CLIENT INFORMATION'),(3800,230,'ef3-project_link_demo','www.livedemo.com'),(3801,230,'ef3-project_link_launch','#'),(3802,230,'ef3-project_link_title','LAUNCH PROJECT'),(3803,230,'ef3-project_category','Finance & Legal'),(3804,230,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3805,230,'_wp_old_slug','what-about-invest-plan'),(3806,230,'_thumbnail_id','1087'),(3807,230,'slide_template','default'),(3808,231,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3809,231,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3810,231,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3811,231,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3812,231,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3813,231,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3814,231,'_wpb_vc_js_status','true'),(3815,231,'post_views_count','151'),(3816,231,'_thumbnail_id','202'),(3817,231,'ef3-project_style','1'),(3818,231,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(3819,231,'ef3-project_client_name','NORMAY ANNI'),(3820,231,'ef3-project_client_position','Graphic Designer'),(3821,231,'ef3-project_link',''),(3822,231,'ef3-project_start_date','21 August, 2016 '),(3823,231,'ef3-project_end_date','21 August, 2018'),(3824,231,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3825,231,'ef3-project_client_title','CLIENT INFORMATION'),(3826,231,'ef3-project_link_demo','www.livedemo.com'),(3827,231,'ef3-project_link_launch','#'),(3828,231,'ef3-project_link_title','LAUNCH PROJECT'),(3829,231,'ef3-project_category','Finance & Legal'),(3830,231,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3831,231,'_wp_old_slug','what-about-invest-plan'),(3832,231,'_wp_old_slug','what-about-invest-plan-2'),(3833,232,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3834,232,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3835,232,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3836,232,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3837,232,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3838,232,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3839,232,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3840,232,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3841,232,'_wpb_vc_js_status','true'),(3842,232,'post_views_count','153'),(3843,232,'_thumbnail_id','204'),(3844,232,'ef3-project_style','1'),(3845,232,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(3846,232,'ef3-project_client_name','NORMAY ANNI'),(3847,232,'ef3-project_client_position','Graphic Designer'),(3848,232,'ef3-project_link',''),(3849,232,'ef3-project_start_date','21 August, 2016 '),(3850,232,'ef3-project_end_date','21 August, 2018'),(3851,232,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3852,232,'ef3-project_client_title','CLIENT INFORMATION'),(3853,232,'ef3-project_link_demo','www.livedemo.com'),(3854,232,'ef3-project_link_launch','#'),(3855,232,'ef3-project_link_title','LAUNCH PROJECT'),(3856,232,'ef3-project_category','Finance & Legal'),(3857,232,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3858,232,'_wp_old_slug','what-about-invest-plan'),(3859,232,'_wp_old_slug','what-about-invest-plan-2'),(3860,232,'_wp_old_slug','what-about-invest-plan-2-2'),(3861,233,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3862,233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3863,233,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3864,233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3865,233,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3866,233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3867,233,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3868,233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3869,233,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3870,233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3871,233,'_wpb_vc_js_status','true'),(3872,233,'post_views_count','152'),(3873,233,'_thumbnail_id','209'),(3874,233,'ef3-project_style','1'),(3875,233,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(3876,233,'ef3-project_client_name','NORMAY ANNI'),(3877,233,'ef3-project_client_position','Graphic Designer'),(3878,233,'ef3-project_link',''),(3879,233,'ef3-project_start_date','21 August, 2016 '),(3880,233,'ef3-project_end_date','21 August, 2018'),(3881,233,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3882,233,'ef3-project_client_title','CLIENT INFORMATION'),(3883,233,'ef3-project_link_demo','www.livedemo.com'),(3884,233,'ef3-project_link_launch','#'),(3885,233,'ef3-project_link_title','LAUNCH PROJECT'),(3886,233,'ef3-project_category','Finance & Legal'),(3887,233,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3888,233,'_wp_old_slug','what-about-invest-plan'),(3889,233,'_wp_old_slug','what-about-invest-plan-2'),(3890,233,'_wp_old_slug','what-about-invest-plan-2-2'),(3891,233,'_wp_old_slug','what-about-invest-plan-2-2-2'),(3892,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3893,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3894,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3895,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3896,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3897,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3898,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3899,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3900,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3901,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3902,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3903,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3904,234,'_wpb_vc_js_status','true'),(3905,234,'post_views_count','154'),(3906,234,'_thumbnail_id','201'),(3907,234,'ef3-project_style','1'),(3908,234,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(3909,234,'ef3-project_client_name','NORMAY ANNI'),(3910,234,'ef3-project_client_position','Graphic Designer'),(3911,234,'ef3-project_link',''),(3912,234,'ef3-project_start_date','21 August, 2016 '),(3913,234,'ef3-project_end_date','21 August, 2018'),(3914,234,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3915,234,'ef3-project_client_title','CLIENT INFORMATION'),(3916,234,'ef3-project_link_demo','www.livedemo.com'),(3917,234,'ef3-project_link_launch','#'),(3918,234,'ef3-project_link_title','LAUNCH PROJECT'),(3919,234,'ef3-project_category','Finance & Legal'),(3920,234,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3921,234,'_wp_old_slug','what-about-invest-plan'),(3922,234,'_wp_old_slug','what-about-invest-plan-2'),(3923,234,'_wp_old_slug','what-about-invest-plan-2-2'),(3924,234,'_wp_old_slug','what-about-invest-plan-2-2-2'),(3925,234,'_wp_old_slug','what-about-invest-plan-2-2-2-2'),(3926,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3927,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3928,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3929,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3930,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3931,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3932,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3933,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3934,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3935,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3936,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3937,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3938,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3939,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3940,235,'_wpb_vc_js_status','true'),(3941,235,'post_views_count','149'),(3942,235,'_thumbnail_id','203'),(3943,235,'ef3-project_style','1'),(3944,235,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(3945,235,'ef3-project_client_name','NORMAY ANNI'),(3946,235,'ef3-project_client_position','Graphic Designer'),(3947,235,'ef3-project_link',''),(3948,235,'ef3-project_start_date','21 August, 2016 '),(3949,235,'ef3-project_end_date','21 August, 2018'),(3950,235,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3951,235,'ef3-project_client_title','CLIENT INFORMATION'),(3952,235,'ef3-project_link_demo','www.livedemo.com'),(3953,235,'ef3-project_link_launch','#'),(3954,235,'ef3-project_link_title','LAUNCH PROJECT'),(3955,235,'ef3-project_category','Finance & Legal'),(3956,235,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3957,235,'_wp_old_slug','what-about-invest-plan'),(3958,235,'_wp_old_slug','what-about-invest-plan-2'),(3959,235,'_wp_old_slug','what-about-invest-plan-2-2'),(3960,235,'_wp_old_slug','what-about-invest-plan-2-2-2'),(3961,235,'_wp_old_slug','what-about-invest-plan-2-2-2-2'),(3962,235,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2'),(3963,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3964,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3965,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3966,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3967,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3968,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3969,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3970,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3971,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3972,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3973,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3974,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3975,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3976,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3977,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3978,236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3979,236,'_wpb_vc_js_status','true'),(3980,236,'post_views_count','157'),(3981,236,'_thumbnail_id','205'),(3982,236,'ef3-project_style','1'),(3983,236,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(3984,236,'ef3-project_client_name','NORMAY ANNI'),(3985,236,'ef3-project_client_position','Graphic Designer'),(3986,236,'ef3-project_link',''),(3987,236,'ef3-project_start_date','21 August, 2016 '),(3988,236,'ef3-project_end_date','21 August, 2018'),(3989,236,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(3990,236,'ef3-project_client_title','CLIENT INFORMATION'),(3991,236,'ef3-project_link_demo','www.livedemo.com'),(3992,236,'ef3-project_link_launch','#'),(3993,236,'ef3-project_link_title','LAUNCH PROJECT'),(3994,236,'ef3-project_category','Finance & Legal'),(3995,236,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(3996,236,'_wp_old_slug','what-about-invest-plan'),(3997,236,'_wp_old_slug','what-about-invest-plan-2'),(3998,236,'_wp_old_slug','what-about-invest-plan-2-2'),(3999,236,'_wp_old_slug','what-about-invest-plan-2-2-2'),(4000,236,'_wp_old_slug','what-about-invest-plan-2-2-2-2'),(4001,236,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2'),(4002,236,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2'),(4003,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4004,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4005,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4006,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4007,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4008,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4009,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4010,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4011,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4012,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4013,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4014,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4015,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4016,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4017,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4018,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4019,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4020,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4021,237,'_wpb_vc_js_status','true'),(4022,237,'post_views_count','157'),(4023,237,'_thumbnail_id','206'),(4024,237,'ef3-project_style','1'),(4025,237,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(4026,237,'ef3-project_client_name','NORMAY ANNI'),(4027,237,'ef3-project_client_position','Graphic Designer'),(4028,237,'ef3-project_link',''),(4029,237,'ef3-project_start_date','21 August, 2016 '),(4030,237,'ef3-project_end_date','21 August, 2018'),(4031,237,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(4032,237,'ef3-project_client_title','CLIENT INFORMATION'),(4033,237,'ef3-project_link_demo','www.livedemo.com'),(4034,237,'ef3-project_link_launch','#'),(4035,237,'ef3-project_link_title','LAUNCH PROJECT'),(4036,237,'ef3-project_category','Finance & Legal'),(4037,237,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4038,237,'_wp_old_slug','what-about-invest-plan'),(4039,237,'_wp_old_slug','what-about-invest-plan-2'),(4040,237,'_wp_old_slug','what-about-invest-plan-2-2'),(4041,237,'_wp_old_slug','what-about-invest-plan-2-2-2'),(4042,237,'_wp_old_slug','what-about-invest-plan-2-2-2-2'),(4043,237,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2'),(4044,237,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2'),(4045,237,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2-2'),(4046,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4047,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4048,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4049,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4050,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4051,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4052,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4053,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4054,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4055,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4056,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4057,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4058,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4059,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4060,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4061,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4062,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4063,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4064,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4065,238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4066,238,'_wpb_vc_js_status','true'),(4067,238,'post_views_count','155'),(4068,238,'_thumbnail_id','207'),(4069,238,'ef3-project_style','1'),(4070,238,'ef3-project_client_image','a:5:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";}'),(4071,238,'ef3-project_client_name','NORMAY ANNI'),(4072,238,'ef3-project_client_position','Graphic Designer'),(4073,238,'ef3-project_link',''),(4074,238,'ef3-project_start_date','21 August, 2016 '),(4075,238,'ef3-project_end_date','21 August, 2018'),(4076,238,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(4077,238,'ef3-project_client_title','CLIENT INFORMATION'),(4078,238,'ef3-project_link_demo','www.livedemo.com'),(4079,238,'ef3-project_link_launch','#'),(4080,238,'ef3-project_link_title','LAUNCH PROJECT'),(4081,238,'ef3-project_category','Finance & Legal'),(4082,238,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4083,238,'_wp_old_slug','what-about-invest-plan'),(4084,238,'_wp_old_slug','what-about-invest-plan-2'),(4085,238,'_wp_old_slug','what-about-invest-plan-2-2'),(4086,238,'_wp_old_slug','what-about-invest-plan-2-2-2'),(4087,238,'_wp_old_slug','what-about-invest-plan-2-2-2-2'),(4088,238,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2'),(4089,238,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2'),(4090,238,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2-2'),(4091,238,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2-2-2'),(4092,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4093,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4094,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4095,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4096,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4097,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4098,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4099,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4100,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4101,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4102,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4103,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4104,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4105,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4106,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4107,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4108,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4109,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4110,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4111,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4112,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4113,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4114,239,'_wpb_vc_js_status','true'),(4115,239,'post_views_count','167'),(4116,239,'ef3-project_style','1'),(4117,239,'ef3-project_client_image','a:9:{s:3:\"url\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:2:\"id\";s:3:\"220\";s:6:\"height\";s:2:\"56\";s:5:\"width\";s:2:\"56\";s:9:\"thumbnail\";s:59:\"http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4118,239,'ef3-project_client_name','NORMAY ANNI'),(4119,239,'ef3-project_client_position','Graphic Designer'),(4120,239,'ef3-project_link',''),(4121,239,'ef3-project_start_date','21 August, 2016 '),(4122,239,'ef3-project_end_date','21 August, 2018'),(4123,239,'ef3-project_description','metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.'),(4124,239,'ef3-project_client_title','CLIENT INFORMATION'),(4125,239,'ef3-project_link_demo','www.livedemo.com'),(4126,239,'ef3-project_link_launch','#'),(4127,239,'ef3-project_link_title','LAUNCH PROJECT'),(4128,239,'ef3-project_category','Finance & Legal'),(4129,239,'_wpb_shortcodes_custom_css','.vc_custom_1525943845451{padding-top: 70px !important;}.vc_custom_1525946244389{padding-top: 60px !important;}.vc_custom_1525945892033{margin-bottom: 24px !important;}.vc_custom_1525946043836{margin-bottom: 14px !important;}.vc_custom_1525946130220{margin-bottom: 58px !important;}.vc_custom_1525946353494{margin-bottom: 25px !important;}.vc_custom_1525946308850{margin-bottom: 35px !important;}.vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}.vc_custom_1526028110203{margin-bottom: 35px !important;}.vc_custom_1526028142051{margin-top: 35px !important;}.vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}.vc_custom_1526091419237{margin-bottom: 30px !important;}.vc_custom_1526091424525{margin-bottom: 30px !important;}.vc_custom_1526091429973{margin-bottom: 30px !important;}.vc_custom_1526091436612{margin-bottom: 30px !important;}.vc_custom_1526091980877{margin-top: 70px !important;}.vc_custom_1526091989411{margin-top: 25px !important;}'),(4130,239,'_wp_old_slug','what-about-invest-plan'),(4131,239,'_wp_old_slug','what-about-invest-plan-2'),(4132,239,'_wp_old_slug','what-about-invest-plan-2-2'),(4133,239,'_wp_old_slug','what-about-invest-plan-2-2-2'),(4134,239,'_wp_old_slug','what-about-invest-plan-2-2-2-2'),(4135,239,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2'),(4136,239,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2'),(4137,239,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2-2'),(4138,239,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2-2-2'),(4139,239,'_wp_old_slug','what-about-invest-plan-2-2-2-2-2-2-2-2-2'),(4140,239,'_thumbnail_id','1087'),(4141,239,'slide_template','default'),(4142,307,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4143,307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4144,307,'_wpb_vc_js_status','false'),(4145,307,'ef3-service_type','Business Service'),(4146,307,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4147,307,'ef3-list_enable','1'),(4148,307,'ef3-service_item_1','Engine & Social Media Optimization.'),(4149,307,'ef3-service_item_2','Expert in Search Engine.'),(4150,307,'ef3-service_item_3','High customer retention rate.'),(4151,307,'ef3-service_item_4','Always return e-mails and calls'),(4152,307,'ef3-service_item_5',''),(4153,307,'post_views_count','77'),(4154,307,'_thumbnail_id','329'),(4155,307,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4156,307,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#2dd34c\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(45,211,76,1)\";}'),(4157,307,'slide_template','default'),(4158,333,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4159,333,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4160,333,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4161,333,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4162,333,'_wpb_vc_js_status','false'),(4163,333,'ef3-service_type','Business Service'),(4164,333,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4165,333,'ef3-list_enable','1'),(4166,333,'ef3-service_item_1','Engine & Social Media Optimization.'),(4167,333,'ef3-service_item_2','Expert in Search Engine.'),(4168,333,'ef3-service_item_3','High customer retention rate.'),(4169,333,'ef3-service_item_4','Always return e-mails and calls'),(4170,333,'ef3-service_item_5',''),(4171,333,'post_views_count','77'),(4172,333,'_thumbnail_id','328'),(4173,333,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4174,333,'_wp_old_slug','content-submission'),(4175,333,'_wp_old_slug','content-submission-2'),(4176,333,'_wp_old_slug','real-time-analytics'),(4177,333,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#1651b5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(22,81,181,1)\";}'),(4178,333,'slide_template','default'),(4179,334,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4180,334,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4181,334,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4182,334,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4183,334,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4184,334,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4185,334,'_wpb_vc_js_status','false'),(4186,334,'ef3-service_type','Business Service'),(4187,334,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4188,334,'ef3-list_enable','1'),(4189,334,'ef3-service_item_1','Engine & Social Media Optimization.'),(4190,334,'ef3-service_item_2','Expert in Search Engine.'),(4191,334,'ef3-service_item_3','High customer retention rate.'),(4192,334,'ef3-service_item_4','Always return e-mails and calls'),(4193,334,'ef3-service_item_5',''),(4194,334,'post_views_count','78'),(4195,334,'_thumbnail_id','327'),(4196,334,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4197,334,'_wp_old_slug','content-submission'),(4198,334,'_wp_old_slug','content-submission-2'),(4199,334,'_wp_old_slug','real-time-analytics'),(4200,334,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#2dd34c\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(45,211,76,1)\";}'),(4201,334,'slide_template','default'),(4202,335,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4203,335,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4204,335,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4205,335,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4206,335,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4207,335,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4208,335,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4209,335,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4210,335,'_wpb_vc_js_status','false'),(4211,335,'ef3-service_type','Business Service'),(4212,335,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4213,335,'ef3-list_enable','1'),(4214,335,'ef3-service_item_1','Engine & Social Media Optimization.'),(4215,335,'ef3-service_item_2','Expert in Search Engine.'),(4216,335,'ef3-service_item_3','High customer retention rate.'),(4217,335,'ef3-service_item_4','Always return e-mails and calls'),(4218,335,'ef3-service_item_5',''),(4219,335,'post_views_count','69'),(4220,335,'_thumbnail_id','326'),(4221,335,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4222,335,'_wp_old_slug','content-submission'),(4223,335,'_wp_old_slug','content-submission-2'),(4224,335,'_wp_old_slug','real-time-analytics'),(4225,335,'_wp_old_slug','engineering'),(4226,335,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#06b9bb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(6,185,187,1)\";}'),(4227,335,'slide_template','default'),(4228,336,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4229,336,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4230,336,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4231,336,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4232,336,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4233,336,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4234,336,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4235,336,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4236,336,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4237,336,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4238,336,'_wpb_vc_js_status','false'),(4239,336,'ef3-service_type','Business Service'),(4240,336,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4241,336,'ef3-list_enable','1'),(4242,336,'ef3-service_item_1','Engine & Social Media Optimization.'),(4243,336,'ef3-service_item_2','Expert in Search Engine.'),(4244,336,'ef3-service_item_3','High customer retention rate.'),(4245,336,'ef3-service_item_4','Always return e-mails and calls'),(4246,336,'ef3-service_item_5',''),(4247,336,'post_views_count','67'),(4248,336,'_thumbnail_id','325'),(4249,336,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4250,336,'_wp_old_slug','content-submission'),(4251,336,'_wp_old_slug','content-submission-2'),(4252,336,'_wp_old_slug','real-time-analytics'),(4253,336,'_wp_old_slug','engineering'),(4254,336,'_wp_old_slug','financial-services'),(4255,336,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f0b30d\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(240,179,13,1)\";}'),(4256,336,'slide_template','default'),(4257,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4258,337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4259,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4260,337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4261,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4262,337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4263,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4264,337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4265,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4266,337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4267,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4268,337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4269,337,'_wpb_vc_js_status','false'),(4270,337,'ef3-service_type','Business Service'),(4271,337,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4272,337,'ef3-list_enable','1'),(4273,337,'ef3-service_item_1','Engine & Social Media Optimization.'),(4274,337,'ef3-service_item_2','Expert in Search Engine.'),(4275,337,'ef3-service_item_3','High customer retention rate.'),(4276,337,'ef3-service_item_4','Always return e-mails and calls'),(4277,337,'ef3-service_item_5',''),(4278,337,'post_views_count','70'),(4279,337,'_thumbnail_id','324'),(4280,337,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4281,337,'_wp_old_slug','content-submission'),(4282,337,'_wp_old_slug','content-submission-2'),(4283,337,'_wp_old_slug','real-time-analytics'),(4284,337,'_wp_old_slug','engineering'),(4285,337,'_wp_old_slug','financial-services'),(4286,337,'_wp_old_slug','custom-insight'),(4287,337,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f00dbd\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(240,13,189,1)\";}'),(4288,337,'slide_template','default'),(4289,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4290,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4291,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4292,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4293,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4294,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4295,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4296,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4297,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4298,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4299,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4300,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4301,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4302,338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4303,338,'_wpb_vc_js_status','false'),(4304,338,'ef3-service_type','Business Service'),(4305,338,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4306,338,'ef3-list_enable','1'),(4307,338,'ef3-service_item_1','Engine & Social Media Optimization.'),(4308,338,'ef3-service_item_2','Expert in Search Engine.'),(4309,338,'ef3-service_item_3','High customer retention rate.'),(4310,338,'ef3-service_item_4','Always return e-mails and calls'),(4311,338,'ef3-service_item_5',''),(4312,338,'post_views_count','66'),(4313,338,'_thumbnail_id','323'),(4314,338,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4315,338,'_wp_old_slug','content-submission'),(4316,338,'_wp_old_slug','content-submission-2'),(4317,338,'_wp_old_slug','real-time-analytics'),(4318,338,'_wp_old_slug','engineering'),(4319,338,'_wp_old_slug','financial-services'),(4320,338,'_wp_old_slug','custom-insight'),(4321,338,'_wp_old_slug','financial-analysis'),(4322,338,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f84d31\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(248,77,49,1)\";}'),(4323,338,'slide_template','default'),(4324,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4325,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4326,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4327,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4328,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4329,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4330,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4331,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4332,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4333,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4334,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4335,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4336,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4337,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4338,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4339,339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4340,339,'_wpb_vc_js_status','false'),(4341,339,'ef3-service_type','Business Service'),(4342,339,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4343,339,'ef3-list_enable','1'),(4344,339,'ef3-service_item_1','Engine & Social Media Optimization.'),(4345,339,'ef3-service_item_2','Expert in Search Engine.'),(4346,339,'ef3-service_item_3','High customer retention rate.'),(4347,339,'ef3-service_item_4','Always return e-mails and calls'),(4348,339,'ef3-service_item_5',''),(4349,339,'post_views_count','72'),(4350,339,'_thumbnail_id','322'),(4351,339,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4352,339,'_wp_old_slug','content-submission'),(4353,339,'_wp_old_slug','content-submission-2'),(4354,339,'_wp_old_slug','real-time-analytics'),(4355,339,'_wp_old_slug','engineering'),(4356,339,'_wp_old_slug','financial-services'),(4357,339,'_wp_old_slug','custom-insight'),(4358,339,'_wp_old_slug','financial-analysis'),(4359,339,'_wp_old_slug','reputation-management'),(4360,339,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#1651b5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(22,81,181,1)\";}'),(4361,339,'slide_template','default'),(4362,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4363,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4364,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4365,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4366,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4367,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4368,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4369,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4370,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4371,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4372,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4373,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4374,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4375,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4376,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4377,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4378,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4379,340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4380,340,'_wpb_vc_js_status','false'),(4381,340,'ef3-service_type','Business Service'),(4382,340,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4383,340,'ef3-list_enable','1'),(4384,340,'ef3-service_item_1','Engine & Social Media Optimization.'),(4385,340,'ef3-service_item_2','Expert in Search Engine.'),(4386,340,'ef3-service_item_3','High customer retention rate.'),(4387,340,'ef3-service_item_4','Always return e-mails and calls'),(4388,340,'ef3-service_item_5',''),(4389,340,'post_views_count','61'),(4390,340,'_thumbnail_id','321'),(4391,340,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4392,340,'_wp_old_slug','content-submission'),(4393,340,'_wp_old_slug','content-submission-2'),(4394,340,'_wp_old_slug','real-time-analytics'),(4395,340,'_wp_old_slug','engineering'),(4396,340,'_wp_old_slug','financial-services'),(4397,340,'_wp_old_slug','custom-insight'),(4398,340,'_wp_old_slug','financial-analysis'),(4399,340,'_wp_old_slug','reputation-management'),(4400,340,'_wp_old_slug','business-strategy'),(4401,340,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#2dd34c\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(45,211,76,1)\";}'),(4402,340,'slide_template','default'),(4403,1725,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4404,1725,'slide_template','default'),(4405,1725,'ef3-service_type','Service Type asdfghdfs baghsd'),(4406,1725,'ef3-service_image','a:9:{s:3:\"url\";s:79:\"http://tropofoto.com/wp-content/uploads/revslider/slaido_18/18_b_background.jpg\";s:2:\"id\";s:4:\"1626\";s:6:\"height\";s:3:\"850\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:87:\"http://tropofoto.com/wp-content/uploads/revslider/slaido_18/18_b_background-380x380.jpg\";s:5:\"title\";s:19:\"18_b_background.jpg\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4407,1725,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#be5353\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(190,83,83,1)\";}'),(4408,1725,'ef3-list_enable','1'),(4409,1725,'ef3-service_item_1','List Item 1'),(4410,1725,'ef3-service_item_2','List Item 2'),(4411,1725,'ef3-service_item_3','List Item 3'),(4412,1725,'ef3-service_item_4','List Item 4'),(4413,1725,'ef3-service_item_5',''),(4414,1725,'_wpb_vc_js_status','false'),(4415,1725,'post_views_count','8'),(4416,1725,'_thumbnail_id','1577'),(4417,269,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4418,269,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4419,269,'_thumbnail_id','268'),(4420,269,'ef3-team_position','Web Developer'),(4421,269,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4422,269,'ef3-team_email','[email protected]'),(4423,269,'ef3-team_phone','+1 (223) 213 2233'),(4424,269,'ef3-team_location','221 Baker Street, London'),(4425,269,'ef3-team_link_title','EMAIL NOW'),(4426,269,'ef3-team_link','#'),(4427,269,'ef3-social_enable','1'),(4428,269,'ef3-team_social_icon_1','fa fa-facebook'),(4429,269,'ef3-team_social_1','#'),(4430,269,'ef3-team_social_icon_2','fa fa-twitter'),(4431,269,'ef3-team_social_2','#'),(4432,269,'ef3-team_social_icon_3','fa fa-google-plus'),(4433,269,'ef3-team_social_3','#'),(4434,269,'ef3-team_social_icon_4','fa fa-linkedin'),(4435,269,'ef3-team_social_4','#'),(4436,269,'ef3-team_link_icon','fa fa-envelope'),(4437,269,'post_views_count','100'),(4438,269,'_wpb_vc_js_status','false'),(4439,269,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4440,269,'_wp_old_slug','merri-alvas'),(4441,269,'slide_template','default'),(4442,277,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4443,277,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4444,277,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4445,277,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4446,277,'_thumbnail_id','267'),(4447,277,'ef3-team_position','PHP Developer'),(4448,277,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4449,277,'ef3-team_email','[email protected]'),(4450,277,'ef3-team_phone','+1 (223) 213 2233'),(4451,277,'ef3-team_location','221 Baker Street, London'),(4452,277,'ef3-team_link_title','EMAIL NOW'),(4453,277,'ef3-team_link','#'),(4454,277,'ef3-social_enable','1'),(4455,277,'ef3-team_social_icon_1','fa fa-facebook'),(4456,277,'ef3-team_social_1','#'),(4457,277,'ef3-team_social_icon_2','fa fa-twitter'),(4458,277,'ef3-team_social_2','#'),(4459,277,'ef3-team_social_icon_3','fa fa-google-plus'),(4460,277,'ef3-team_social_3','#'),(4461,277,'ef3-team_social_icon_4','fa fa-linkedin'),(4462,277,'ef3-team_social_4','#'),(4463,277,'ef3-team_link_icon','fa fa-envelope'),(4464,277,'post_views_count','100'),(4465,277,'_wpb_vc_js_status','false'),(4466,277,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4467,277,'_wp_old_slug','merri-alvas'),(4468,277,'_wp_old_slug','merri-alvas-2'),(4469,277,'slide_template','default'),(4470,278,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4471,278,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4472,278,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4473,278,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4474,278,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4475,278,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4476,278,'_thumbnail_id','266'),(4477,278,'ef3-team_position','Graphic Designer'),(4478,278,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4479,278,'ef3-team_email','[email protected]'),(4480,278,'ef3-team_phone','+1 (223) 213 2233'),(4481,278,'ef3-team_location','221 Baker Street, London'),(4482,278,'ef3-team_link_title','EMAIL NOW'),(4483,278,'ef3-team_link','#'),(4484,278,'ef3-social_enable','1'),(4485,278,'ef3-team_social_icon_1','fa fa-facebook'),(4486,278,'ef3-team_social_1','#'),(4487,278,'ef3-team_social_icon_2','fa fa-twitter'),(4488,278,'ef3-team_social_2','#'),(4489,278,'ef3-team_social_icon_3','fa fa-google-plus'),(4490,278,'ef3-team_social_3','#'),(4491,278,'ef3-team_social_icon_4','fa fa-linkedin'),(4492,278,'ef3-team_social_4','#'),(4493,278,'ef3-team_link_icon','fa fa-envelope'),(4494,278,'post_views_count','111'),(4495,278,'_wpb_vc_js_status','false'),(4496,278,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4497,278,'_wp_old_slug','merri-alvas-2'),(4498,278,'_wp_old_slug','jon-ronky'),(4499,278,'slide_template','default'),(4500,279,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4501,279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4502,279,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4503,279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4504,279,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4505,279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4506,279,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4507,279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4508,279,'_thumbnail_id','265'),(4509,279,'ef3-team_position','Web Developer'),(4510,279,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4511,279,'ef3-team_email','[email protected]'),(4512,279,'ef3-team_phone','+1 (223) 213 2233'),(4513,279,'ef3-team_location','221 Baker Street, London'),(4514,279,'ef3-team_link_title','EMAIL NOW'),(4515,279,'ef3-team_link','#'),(4516,279,'ef3-social_enable','1'),(4517,279,'ef3-team_social_icon_1','fa fa-facebook'),(4518,279,'ef3-team_social_1','#'),(4519,279,'ef3-team_social_icon_2','fa fa-twitter'),(4520,279,'ef3-team_social_2','#'),(4521,279,'ef3-team_social_icon_3','fa fa-google-plus'),(4522,279,'ef3-team_social_3','#'),(4523,279,'ef3-team_social_icon_4','fa fa-linkedin'),(4524,279,'ef3-team_social_4','#'),(4525,279,'ef3-team_link_icon','fa fa-envelope'),(4526,279,'post_views_count','111'),(4527,279,'_wpb_vc_js_status','false'),(4528,279,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4529,279,'_wp_old_slug','merri-alvas-2'),(4530,279,'_wp_old_slug','jon-ronky'),(4531,279,'slide_template','default'),(4532,280,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4533,280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4534,280,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4535,280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4536,280,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4537,280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4538,280,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4539,280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4540,280,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4541,280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4542,280,'_thumbnail_id','264'),(4543,280,'ef3-team_position','Graphic Designer'),(4544,280,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4545,280,'ef3-team_email','[email protected]'),(4546,280,'ef3-team_phone','+1 (223) 213 2233'),(4547,280,'ef3-team_location','221 Baker Street, London'),(4548,280,'ef3-team_link_title','EMAIL NOW'),(4549,280,'ef3-team_link','#'),(4550,280,'ef3-social_enable','1'),(4551,280,'ef3-team_social_icon_1','fa fa-facebook'),(4552,280,'ef3-team_social_1','#'),(4553,280,'ef3-team_social_icon_2','fa fa-twitter'),(4554,280,'ef3-team_social_2','#'),(4555,280,'ef3-team_social_icon_3','fa fa-google-plus'),(4556,280,'ef3-team_social_3','#'),(4557,280,'ef3-team_social_icon_4','fa fa-linkedin'),(4558,280,'ef3-team_social_4','#'),(4559,280,'ef3-team_link_icon','fa fa-envelope'),(4560,280,'post_views_count','107'),(4561,280,'_wpb_vc_js_status','false'),(4562,280,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4563,280,'_wp_old_slug','merri-alvas-2'),(4564,280,'_wp_old_slug','jon-ronky'),(4565,280,'_wp_old_slug','oliv'),(4566,280,'slide_template','default'),(4567,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4568,281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4569,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4570,281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4571,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4572,281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4573,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4574,281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4575,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4576,281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4577,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4578,281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4579,281,'_thumbnail_id','262'),(4580,281,'ef3-team_position','PHP Developer'),(4581,281,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4582,281,'ef3-team_email','[email protected]'),(4583,281,'ef3-team_phone','+1 (223) 213 2233'),(4584,281,'ef3-team_location','221 Baker Street, London'),(4585,281,'ef3-team_link_title','EMAIL NOW'),(4586,281,'ef3-team_link','#'),(4587,281,'ef3-social_enable','1'),(4588,281,'ef3-team_social_icon_1','fa fa-facebook'),(4589,281,'ef3-team_social_1','#'),(4590,281,'ef3-team_social_icon_2','fa fa-twitter'),(4591,281,'ef3-team_social_2','#'),(4592,281,'ef3-team_social_icon_3','fa fa-google-plus'),(4593,281,'ef3-team_social_3','#'),(4594,281,'ef3-team_social_icon_4','fa fa-linkedin'),(4595,281,'ef3-team_social_4','#'),(4596,281,'ef3-team_link_icon','fa fa-envelope'),(4597,281,'post_views_count','110'),(4598,281,'_wpb_vc_js_status','false'),(4599,281,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4600,281,'_wp_old_slug','merri-alvas-2'),(4601,281,'_wp_old_slug','jon-ronky'),(4602,281,'_wp_old_slug','oliv'),(4603,281,'slide_template','default'),(4604,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4605,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4606,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4607,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4608,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4609,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4610,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4611,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4612,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4613,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4614,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4615,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4616,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4617,282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4618,282,'_thumbnail_id','266'),(4619,282,'ef3-team_position','Web Developer'),(4620,282,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(4621,282,'ef3-team_email','[email protected]'),(4622,282,'ef3-team_phone','+1 (223) 213 2233'),(4623,282,'ef3-team_location','221 Baker Street, London'),(4624,282,'ef3-team_link_title','EMAIL NOW'),(4625,282,'ef3-team_link','#'),(4626,282,'ef3-social_enable','1'),(4627,282,'ef3-team_social_icon_1','fa fa-facebook'),(4628,282,'ef3-team_social_1','#'),(4629,282,'ef3-team_social_icon_2','fa fa-twitter'),(4630,282,'ef3-team_social_2','#'),(4631,282,'ef3-team_social_icon_3','fa fa-google-plus'),(4632,282,'ef3-team_social_3','#'),(4633,282,'ef3-team_social_icon_4','fa fa-linkedin'),(4634,282,'ef3-team_social_4','#'),(4635,282,'ef3-team_link_icon','fa fa-envelope'),(4636,282,'post_views_count','120'),(4637,282,'_wpb_vc_js_status','false'),(4638,282,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(4639,282,'_wp_old_slug','merri-alvas-2'),(4640,282,'_wp_old_slug','jon-ronky'),(4641,282,'_wp_old_slug','oliv'),(4642,282,'_wp_old_slug','poll-walqar'),(4643,282,'slide_template','default'),(4644,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4645,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4646,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4647,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4648,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4649,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4650,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4651,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4652,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4653,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4654,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4655,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4656,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4657,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4658,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4659,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4660,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4661,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4662,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4663,341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4664,341,'_wpb_vc_js_status','false'),(4665,341,'ef3-service_type','Business Service'),(4666,341,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4667,341,'ef3-list_enable','1'),(4668,341,'ef3-service_item_1','Engine & Social Media Optimization.'),(4669,341,'ef3-service_item_2','Expert in Search Engine.'),(4670,341,'ef3-service_item_3','High customer retention rate.'),(4671,341,'ef3-service_item_4','Always return e-mails and calls'),(4672,341,'ef3-service_item_5',''),(4673,341,'post_views_count','64'),(4674,341,'_thumbnail_id','320'),(4675,341,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4676,341,'_wp_old_slug','content-submission'),(4677,341,'_wp_old_slug','content-submission-2'),(4678,341,'_wp_old_slug','real-time-analytics'),(4679,341,'_wp_old_slug','engineering'),(4680,341,'_wp_old_slug','financial-services'),(4681,341,'_wp_old_slug','custom-insight'),(4682,341,'_wp_old_slug','financial-analysis'),(4683,341,'_wp_old_slug','reputation-management'),(4684,341,'_wp_old_slug','business-strategy'),(4685,341,'_wp_old_slug','agriculture'),(4686,341,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#06b9bb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(6,185,187,1)\";}'),(4687,341,'slide_template','default'),(4688,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4689,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4690,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4691,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4692,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4693,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4694,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4695,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4696,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4697,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4698,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4699,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4700,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4701,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4702,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4703,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4704,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4705,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4706,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4707,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4708,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4709,342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4710,342,'_wpb_vc_js_status','false'),(4711,342,'ef3-service_type','Business Service'),(4712,342,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4713,342,'ef3-list_enable','1'),(4714,342,'ef3-service_item_1','Engine & Social Media Optimization.'),(4715,342,'ef3-service_item_2','Expert in Search Engine.'),(4716,342,'ef3-service_item_3','High customer retention rate.'),(4717,342,'ef3-service_item_4','Always return e-mails and calls'),(4718,342,'ef3-service_item_5',''),(4719,342,'post_views_count','67'),(4720,342,'_thumbnail_id','319'),(4721,342,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4722,342,'_wp_old_slug','content-submission'),(4723,342,'_wp_old_slug','content-submission-2'),(4724,342,'_wp_old_slug','real-time-analytics'),(4725,342,'_wp_old_slug','engineering'),(4726,342,'_wp_old_slug','financial-services'),(4727,342,'_wp_old_slug','custom-insight'),(4728,342,'_wp_old_slug','financial-analysis'),(4729,342,'_wp_old_slug','reputation-management'),(4730,342,'_wp_old_slug','business-strategy'),(4731,342,'_wp_old_slug','agriculture'),(4732,342,'_wp_old_slug','engineering-2'),(4733,342,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f0b30d\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(240,179,13,1)\";}'),(4734,342,'slide_template','default'),(4735,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4736,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4737,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4738,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4739,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4740,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4741,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4742,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4743,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4744,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4745,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4746,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4747,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4748,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4749,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4750,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4751,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4752,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4753,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4754,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4755,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4756,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4757,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4758,343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4759,343,'_wpb_vc_js_status','false'),(4760,343,'ef3-service_type','Business Service'),(4761,343,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4762,343,'ef3-list_enable','1'),(4763,343,'ef3-service_item_1','Engine & Social Media Optimization.'),(4764,343,'ef3-service_item_2','Expert in Search Engine.'),(4765,343,'ef3-service_item_3','High customer retention rate.'),(4766,343,'ef3-service_item_4','Always return e-mails and calls'),(4767,343,'ef3-service_item_5',''),(4768,343,'post_views_count','64'),(4769,343,'_thumbnail_id','317'),(4770,343,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4771,343,'_wp_old_slug','content-submission'),(4772,343,'_wp_old_slug','content-submission-2'),(4773,343,'_wp_old_slug','engineering'),(4774,343,'_wp_old_slug','financial-services'),(4775,343,'_wp_old_slug','custom-insight'),(4776,343,'_wp_old_slug','financial-analysis'),(4777,343,'_wp_old_slug','reputation-management'),(4778,343,'_wp_old_slug','business-strategy'),(4779,343,'_wp_old_slug','agriculture'),(4780,343,'_wp_old_slug','engineering-2'),(4781,343,'_wp_old_slug','financial-services-2'),(4782,343,'_wp_old_slug','cloud-computing'),(4783,343,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f00dbd\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(240,13,189,1)\";}'),(4784,343,'slide_template','default'),(4785,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4786,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4787,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4788,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4789,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4790,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4791,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4792,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4793,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4794,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4795,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4796,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4797,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4798,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4799,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4800,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4801,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4802,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4803,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4804,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4805,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4806,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4807,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4808,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4809,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4810,344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4811,344,'_wpb_vc_js_status','false'),(4812,344,'ef3-service_type','Business Service'),(4813,344,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4814,344,'ef3-list_enable','1'),(4815,344,'ef3-service_item_1','Engine & Social Media Optimization.'),(4816,344,'ef3-service_item_2','Expert in Search Engine.'),(4817,344,'ef3-service_item_3','High customer retention rate.'),(4818,344,'ef3-service_item_4','Always return e-mails and calls'),(4819,344,'ef3-service_item_5',''),(4820,344,'post_views_count','75'),(4821,344,'_thumbnail_id','315'),(4822,344,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4823,344,'_wp_old_slug','content-submission'),(4824,344,'_wp_old_slug','engineering'),(4825,344,'_wp_old_slug','financial-services'),(4826,344,'_wp_old_slug','custom-insight'),(4827,344,'_wp_old_slug','financial-analysis'),(4828,344,'_wp_old_slug','reputation-management'),(4829,344,'_wp_old_slug','business-strategy'),(4830,344,'_wp_old_slug','agriculture'),(4831,344,'_wp_old_slug','engineering-2'),(4832,344,'_wp_old_slug','financial-services-2'),(4833,344,'_wp_old_slug','cloud-computing'),(4834,344,'_wp_old_slug','real-time-analytics'),(4835,344,'_wp_old_slug','reputation-management-2'),(4836,344,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f84d31\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(248,77,49,1)\";}'),(4837,344,'slide_template','default'),(4838,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4839,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4840,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4841,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4842,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4843,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4844,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4845,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4846,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4847,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4848,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4849,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4850,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4851,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4852,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4853,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4854,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4855,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4856,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4857,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4858,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4859,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4860,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4861,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4862,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4863,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4864,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4865,345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4866,345,'_wpb_vc_js_status','false'),(4867,345,'ef3-service_type','Business Service'),(4868,345,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4869,345,'ef3-list_enable','1'),(4870,345,'ef3-service_item_1','Engine & Social Media Optimization.'),(4871,345,'ef3-service_item_2','Expert in Search Engine.'),(4872,345,'ef3-service_item_3','High customer retention rate.'),(4873,345,'ef3-service_item_4','Always return e-mails and calls'),(4874,345,'ef3-service_item_5',''),(4875,345,'post_views_count','73'),(4876,345,'_thumbnail_id','314'),(4877,345,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4878,345,'_wp_old_slug','content-submission'),(4879,345,'_wp_old_slug','engineering'),(4880,345,'_wp_old_slug','financial-services'),(4881,345,'_wp_old_slug','custom-insight'),(4882,345,'_wp_old_slug','financial-analysis'),(4883,345,'_wp_old_slug','reputation-management'),(4884,345,'_wp_old_slug','business-strategy'),(4885,345,'_wp_old_slug','agriculture'),(4886,345,'_wp_old_slug','engineering-2'),(4887,345,'_wp_old_slug','financial-services-2'),(4888,345,'_wp_old_slug','cloud-computing'),(4889,345,'_wp_old_slug','real-time-analytics'),(4890,345,'_wp_old_slug','reputation-management-2'),(4891,345,'_wp_old_slug','content-submission-2'),(4892,345,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#1651b5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(22,81,181,1)\";}'),(4893,345,'slide_template','default'),(4894,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4895,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4896,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4897,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4898,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4899,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4900,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4901,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4902,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4903,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4904,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4905,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4906,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4907,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4908,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4909,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4910,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4911,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4912,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4913,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4914,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4915,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4916,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4917,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4918,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4919,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4920,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4921,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4922,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4923,346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4924,346,'_wpb_vc_js_status','false'),(4925,346,'ef3-service_type','Business Service'),(4926,346,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4927,346,'ef3-list_enable','1'),(4928,346,'ef3-service_item_1','Engine & Social Media Optimization.'),(4929,346,'ef3-service_item_2','Expert in Search Engine.'),(4930,346,'ef3-service_item_3','High customer retention rate.'),(4931,346,'ef3-service_item_4','Always return e-mails and calls'),(4932,346,'ef3-service_item_5',''),(4933,346,'post_views_count','73'),(4934,346,'_thumbnail_id','313'),(4935,346,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4936,346,'_wp_old_slug','content-submission'),(4937,346,'_wp_old_slug','engineering'),(4938,346,'_wp_old_slug','financial-services'),(4939,346,'_wp_old_slug','custom-insight'),(4940,346,'_wp_old_slug','financial-analysis'),(4941,346,'_wp_old_slug','reputation-management'),(4942,346,'_wp_old_slug','business-strategy'),(4943,346,'_wp_old_slug','agriculture'),(4944,346,'_wp_old_slug','engineering-2'),(4945,346,'_wp_old_slug','financial-services-2'),(4946,346,'_wp_old_slug','cloud-computing'),(4947,346,'_wp_old_slug','real-time-analytics'),(4948,346,'_wp_old_slug','reputation-management-2'),(4949,346,'_wp_old_slug','content-submission-2'),(4950,346,'_wp_old_slug','seo-optimization'),(4951,346,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#2dd34c\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(45,211,76,1)\";}'),(4952,346,'slide_template','default'),(4953,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4954,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4955,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4956,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4957,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4958,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4959,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4960,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4961,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4962,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4963,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4964,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4965,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4966,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4967,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4968,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4969,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4970,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4971,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4972,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4973,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4974,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4975,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4976,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4977,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4978,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4979,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4980,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4981,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4982,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4983,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4984,347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4985,347,'_wpb_vc_js_status','false'),(4986,347,'ef3-service_type','Business Service'),(4987,347,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4988,347,'ef3-list_enable','1'),(4989,347,'ef3-service_item_1','Engine & Social Media Optimization.'),(4990,347,'ef3-service_item_2','Expert in Search Engine.'),(4991,347,'ef3-service_item_3','High customer retention rate.'),(4992,347,'ef3-service_item_4','Always return e-mails and calls'),(4993,347,'ef3-service_item_5',''),(4994,347,'post_views_count','78'),(4995,347,'_thumbnail_id','312'),(4996,347,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(4997,347,'_wp_old_slug','content-submission'),(4998,347,'_wp_old_slug','engineering'),(4999,347,'_wp_old_slug','financial-services'),(5000,347,'_wp_old_slug','custom-insight'),(5001,347,'_wp_old_slug','financial-analysis'),(5002,347,'_wp_old_slug','reputation-management'),(5003,347,'_wp_old_slug','business-strategy'),(5004,347,'_wp_old_slug','agriculture'),(5005,347,'_wp_old_slug','engineering-2'),(5006,347,'_wp_old_slug','financial-services-2'),(5007,347,'_wp_old_slug','real-time-analytics'),(5008,347,'_wp_old_slug','reputation-management-2'),(5009,347,'_wp_old_slug','content-submission-2'),(5010,347,'_wp_old_slug','seo-optimization'),(5011,347,'_wp_old_slug','engineering-art'),(5012,347,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#06b9bb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(6,185,187,1)\";}'),(5013,347,'slide_template','default'),(5014,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5015,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5016,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5017,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5018,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5019,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5020,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5021,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5022,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5023,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5024,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5025,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5026,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5027,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5028,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5029,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5030,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5031,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5032,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5033,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5034,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5035,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5036,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5037,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5038,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5039,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5040,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5041,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5042,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5043,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5044,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5045,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5046,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5047,348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5048,348,'_wpb_vc_js_status','false'),(5049,348,'ef3-service_type','Business Service'),(5050,348,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5051,348,'ef3-list_enable','1'),(5052,348,'ef3-service_item_1','Engine & Social Media Optimization.'),(5053,348,'ef3-service_item_2','Expert in Search Engine.'),(5054,348,'ef3-service_item_3','High customer retention rate.'),(5055,348,'ef3-service_item_4','Always return e-mails and calls'),(5056,348,'ef3-service_item_5',''),(5057,348,'post_views_count','73'),(5058,348,'_thumbnail_id','311'),(5059,348,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5060,348,'_wp_old_slug','content-submission'),(5061,348,'_wp_old_slug','engineering'),(5062,348,'_wp_old_slug','financial-services'),(5063,348,'_wp_old_slug','custom-insight'),(5064,348,'_wp_old_slug','financial-analysis'),(5065,348,'_wp_old_slug','reputation-management'),(5066,348,'_wp_old_slug','business-strategy'),(5067,348,'_wp_old_slug','agriculture'),(5068,348,'_wp_old_slug','engineering-2'),(5069,348,'_wp_old_slug','financial-services-2'),(5070,348,'_wp_old_slug','real-time-analytics'),(5071,348,'_wp_old_slug','reputation-management-2'),(5072,348,'_wp_old_slug','content-submission-2'),(5073,348,'_wp_old_slug','seo-optimization'),(5074,348,'_wp_old_slug','engineering-art'),(5075,348,'_wp_old_slug','cloud-computing'),(5076,348,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f0b30d\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(240,179,13,1)\";}'),(5077,348,'slide_template','default'),(5078,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5079,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5080,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5081,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5082,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5083,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5084,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5085,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5086,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5087,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5088,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5089,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5090,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5091,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5092,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5093,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5094,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5095,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5096,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5097,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5098,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5099,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5100,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5101,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5102,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5103,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5104,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5105,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5106,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5107,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5108,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5109,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5110,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5111,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5112,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5113,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5114,349,'_wpb_vc_js_status','false'),(5115,349,'ef3-service_type','Business Service'),(5116,349,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5117,349,'ef3-list_enable','1'),(5118,349,'ef3-service_item_1','Engine & Social Media Optimization.'),(5119,349,'ef3-service_item_2','Expert in Search Engine.'),(5120,349,'ef3-service_item_3','High customer retention rate.'),(5121,349,'ef3-service_item_4','Always return e-mails and calls'),(5122,349,'ef3-service_item_5',''),(5123,349,'post_views_count','73'),(5124,349,'_thumbnail_id','310'),(5125,349,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5126,349,'_wp_old_slug','content-submission'),(5127,349,'_wp_old_slug','engineering'),(5128,349,'_wp_old_slug','financial-services'),(5129,349,'_wp_old_slug','custom-insight'),(5130,349,'_wp_old_slug','financial-analysis'),(5131,349,'_wp_old_slug','reputation-management'),(5132,349,'_wp_old_slug','business-strategy'),(5133,349,'_wp_old_slug','agriculture'),(5134,349,'_wp_old_slug','engineering-2'),(5135,349,'_wp_old_slug','financial-services-2'),(5136,349,'_wp_old_slug','real-time-analytics'),(5137,349,'_wp_old_slug','reputation-management-2'),(5138,349,'_wp_old_slug','content-submission-2'),(5139,349,'_wp_old_slug','seo-optimization'),(5140,349,'_wp_old_slug','engineering-art'),(5141,349,'_wp_old_slug','cloud-computing'),(5142,349,'_wp_old_slug','financial-services-3'),(5143,349,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f00dbd\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(240,13,189,1)\";}'),(5144,349,'slide_template','default'),(5145,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5146,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5147,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5148,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5149,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5150,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5151,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5152,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5153,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5154,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5155,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5156,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5157,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5158,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5159,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5160,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5161,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5162,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5163,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5164,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5165,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5166,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5167,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5168,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5169,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5170,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5171,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5172,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5173,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5174,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5175,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5176,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5177,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5178,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5179,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5180,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5181,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5182,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5183,350,'_wpb_vc_js_status','false'),(5184,350,'ef3-service_type','Business Service'),(5185,350,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5186,350,'ef3-list_enable','1'),(5187,350,'ef3-service_item_1','Engine & Social Media Optimization.'),(5188,350,'ef3-service_item_2','Expert in Search Engine.'),(5189,350,'ef3-service_item_3','High customer retention rate.'),(5190,350,'ef3-service_item_4','Always return e-mails and calls'),(5191,350,'ef3-service_item_5',''),(5192,350,'post_views_count','82'),(5193,350,'_thumbnail_id','309'),(5194,350,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5195,350,'_wp_old_slug','content-submission'),(5196,350,'_wp_old_slug','engineering'),(5197,350,'_wp_old_slug','financial-services'),(5198,350,'_wp_old_slug','custom-insight'),(5199,350,'_wp_old_slug','financial-analysis'),(5200,350,'_wp_old_slug','reputation-management'),(5201,350,'_wp_old_slug','business-strategy'),(5202,350,'_wp_old_slug','agriculture'),(5203,350,'_wp_old_slug','engineering-2'),(5204,350,'_wp_old_slug','financial-services-2'),(5205,350,'_wp_old_slug','real-time-analytics'),(5206,350,'_wp_old_slug','reputation-management-2'),(5207,350,'_wp_old_slug','content-submission-2'),(5208,350,'_wp_old_slug','seo-optimization'),(5209,350,'_wp_old_slug','engineering-art'),(5210,350,'_wp_old_slug','cloud-computing'),(5211,350,'_wp_old_slug','financial-services-3'),(5212,350,'_wp_old_slug','social-media-marketing'),(5213,350,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#f84d31\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(248,77,49,1)\";}'),(5214,350,'slide_template','default'),(5215,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5216,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5217,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5218,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5219,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5220,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5221,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5222,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5223,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5224,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5225,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5226,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5227,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5228,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5229,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5230,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5231,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5232,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5233,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5234,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5235,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5236,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5237,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5238,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5239,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5240,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5241,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5242,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5243,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5244,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5245,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5246,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5247,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5248,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5249,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5250,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5251,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5252,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5253,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5254,351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5255,351,'_wpb_vc_js_status','true'),(5256,351,'ef3-service_type','Business Service'),(5257,351,'ef3-service_image','a:9:{s:3:\"url\";s:67:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg\";s:2:\"id\";s:3:\"330\";s:6:\"height\";s:3:\"695\";s:5:\"width\";s:3:\"770\";s:9:\"thumbnail\";s:75:\"http://tropofoto.com/wp-content/uploads/2018/05/service_detail1-380x380.jpg\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5258,351,'ef3-list_enable','1'),(5259,351,'ef3-service_item_1','Engine & Social Media Optimization.'),(5260,351,'ef3-service_item_2','Expert in Search Engine.'),(5261,351,'ef3-service_item_3','High customer retention rate.'),(5262,351,'ef3-service_item_4','Always return e-mails and calls'),(5263,351,'ef3-service_item_5',''),(5264,351,'post_views_count','182'),(5265,351,'_thumbnail_id','308'),(5266,351,'_wpb_shortcodes_custom_css','.vc_custom_1526886357747{padding-top: 45px !important;}.vc_custom_1526890421471{padding-top: 50px !important;}.vc_custom_1526890179782{padding-top: 30px !important;}.vc_custom_1526886684498{margin-top: 25px !important;}.vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}.vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1526886828203{margin-bottom: 35px !important;}.vc_custom_1526886850355{margin-top: 35px !important;}.vc_custom_1526888318791{margin-top: 25px !important;}'),(5267,351,'_wp_old_slug','content-submission'),(5268,351,'_wp_old_slug','engineering'),(5269,351,'_wp_old_slug','financial-services'),(5270,351,'_wp_old_slug','custom-insight'),(5271,351,'_wp_old_slug','financial-analysis'),(5272,351,'_wp_old_slug','reputation-management'),(5273,351,'_wp_old_slug','business-strategy'),(5274,351,'_wp_old_slug','agriculture'),(5275,351,'_wp_old_slug','engineering-2'),(5276,351,'_wp_old_slug','financial-services-2'),(5277,351,'_wp_old_slug','real-time-analytics'),(5278,351,'_wp_old_slug','reputation-management-2'),(5279,351,'_wp_old_slug','content-submission-2'),(5280,351,'_wp_old_slug','seo-optimization'),(5281,351,'_wp_old_slug','engineering-art'),(5282,351,'_wp_old_slug','cloud-computing'),(5283,351,'_wp_old_slug','financial-services-3'),(5284,351,'_wp_old_slug','social-media-marketing'),(5285,351,'_wp_old_slug','quility-services'),(5286,351,'ef3-service_background','a:3:{s:5:\"color\";s:7:\"#1651b5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(22,81,181,1)\";}'),(5287,351,'slide_template','default'),(5288,1385,'_order_key','wc_order_5b2a08aaaa509'),(5289,1385,'_customer_user','0'),(5290,1385,'_payment_method','cheque'),(5291,1385,'_payment_method_title','Check payments'),(5292,1385,'_transaction_id',''),(5293,1385,'_customer_ip_address','118.70.186.156'),(5294,1385,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; rv:60.0) gecko/20100101 firefox/60.0'),(5295,1385,'_created_via','checkout'),(5296,1385,'_date_completed',''),(5297,1385,'_completed_date',''),(5298,1385,'_date_paid',''),(5299,1385,'_paid_date',''),(5300,1385,'_cart_hash','a606fb0d565e38d16a638b23eb956868'),(5301,1385,'_billing_first_name','dg'),(5302,1385,'_billing_last_name','thfg'),(5303,1385,'_billing_company','fgj'),(5304,1385,'_billing_address_1','fdsgh'),(5305,1385,'_billing_address_2',''),(5306,1385,'_billing_city','dfd'),(5307,1385,'_billing_state',''),(5308,1385,'_billing_postcode','F'),(5309,1385,'_billing_country','VN'),(5310,1385,'_billing_email','[email protected]'),(5311,1385,'_billing_phone','546727'),(5312,1385,'_shipping_first_name','j'),(5313,1385,'_shipping_last_name','ghj'),(5314,1385,'_shipping_company','g'),(5315,1385,'_shipping_address_1','ghkj'),(5316,1385,'_shipping_address_2',''),(5317,1385,'_shipping_city','fdh'),(5318,1385,'_shipping_state',''),(5319,1385,'_shipping_postcode','HG'),(5320,1385,'_shipping_country','VN'),(5321,1385,'_order_currency','USD'),(5322,1385,'_cart_discount','0'),(5323,1385,'_cart_discount_tax','0'),(5324,1385,'_order_shipping','0.00'),(5325,1385,'_order_shipping_tax','0'),(5326,1385,'_order_tax','0'),(5327,1385,'_order_total','120.00'),(5328,1385,'_order_version','3.4.0'),(5329,1385,'_prices_include_tax','no'),(5330,1385,'_billing_address_index','dg thfg fgj fdsgh dfd F VN [email protected] 546727'),(5331,1385,'_shipping_address_index','j ghj g ghkj fdh HG VN'),(5332,1385,'_shipping_email','[email protected]'),(5333,1385,'_shipping_phone','4356234'),(5334,1385,'_recorded_sales','yes'),(5335,1385,'_recorded_coupon_usage_counts','yes'),(5336,1385,'_order_stock_reduced','yes'),(5337,1386,'_order_key','wc_order_5b2a09735c843'),(5338,1386,'_customer_user','1'),(5339,1386,'_payment_method','cheque'),(5340,1386,'_payment_method_title','Check payments'),(5341,1386,'_transaction_id',''),(5342,1386,'_customer_ip_address','118.70.186.156'),(5343,1386,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; rv:60.0) gecko/20100101 firefox/60.0'),(5344,1386,'_created_via','checkout'),(5345,1386,'_date_completed',''),(5346,1386,'_completed_date',''),(5347,1386,'_date_paid',''),(5348,1386,'_paid_date',''),(5349,1386,'_cart_hash','396be921b2bbc29019baa0ddb067512e'),(5350,1386,'_billing_first_name','dfh'),(5351,1386,'_billing_last_name','dfh'),(5352,1386,'_billing_company','dfh'),(5353,1386,'_billing_address_1','dfh'),(5354,1386,'_billing_address_2',''),(5355,1386,'_billing_city','df'),(5356,1386,'_billing_state',''),(5357,1386,'_billing_postcode','DFH'),(5358,1386,'_billing_country','VN'),(5359,1386,'_billing_email','[email protected]'),(5360,1386,'_billing_phone','345636'),(5361,1386,'_shipping_first_name','dfh'),(5362,1386,'_shipping_last_name','dfh'),(5363,1386,'_shipping_company','dfh'),(5364,1386,'_shipping_address_1','dfh'),(5365,1386,'_shipping_address_2',''),(5366,1386,'_shipping_city','df'),(5367,1386,'_shipping_state',''),(5368,1386,'_shipping_postcode','dfh'),(5369,1386,'_shipping_country','VN'),(5370,1386,'_order_currency','USD'),(5371,1386,'_cart_discount','0'),(5372,1386,'_cart_discount_tax','0'),(5373,1386,'_order_shipping','0.00'),(5374,1386,'_order_shipping_tax','0'),(5375,1386,'_order_tax','0'),(5376,1386,'_order_total','107.00'),(5377,1386,'_order_version','3.4.0'),(5378,1386,'_prices_include_tax','no'),(5379,1386,'_billing_address_index','dfh dfh dfh dfh df DFH VN [email protected] 345636'),(5380,1386,'_shipping_address_index','dfh dfh dfh dfh df dfh VN'),(5381,1386,'_shipping_email','[email protected]'),(5382,1386,'_shipping_phone','345636'),(5383,1386,'_recorded_sales','yes'),(5384,1386,'_recorded_coupon_usage_counts','yes'),(5385,1386,'_order_stock_reduced','yes'),(5393,217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5394,217,'_wpb_vc_js_status','true'),(5395,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5396,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5397,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5398,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5399,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5400,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5401,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5402,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5403,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5404,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5405,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5406,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5407,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5408,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5409,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5410,283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5411,283,'_thumbnail_id','261'),(5412,283,'ef3-team_position','Graphic Designer'),(5413,283,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(5414,283,'ef3-team_email','[email protected]'),(5415,283,'ef3-team_phone','+1 (223) 213 2233'),(5416,283,'ef3-team_location','221 Baker Street, London'),(5417,283,'ef3-team_link_title','EMAIL NOW'),(5418,283,'ef3-team_link','#'),(5419,283,'ef3-social_enable','1'),(5420,283,'ef3-team_social_icon_1','fa fa-facebook'),(5421,283,'ef3-team_social_1','#'),(5422,283,'ef3-team_social_icon_2','fa fa-twitter'),(5423,283,'ef3-team_social_2','#'),(5424,283,'ef3-team_social_icon_3','fa fa-google-plus'),(5425,283,'ef3-team_social_3','#'),(5426,283,'ef3-team_social_icon_4','fa fa-linkedin'),(5427,283,'ef3-team_social_4','#'),(5428,283,'ef3-team_link_icon','fa fa-envelope'),(5429,283,'post_views_count','118'),(5430,283,'_wpb_vc_js_status','false'),(5431,283,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5432,283,'_wp_old_slug','merri-alvas-2'),(5433,283,'_wp_old_slug','jon-ronky'),(5434,283,'_wp_old_slug','oliv'),(5435,283,'_wp_old_slug','poll-walqar'),(5436,283,'_wp_old_slug','kile-walker'),(5437,283,'slide_template','default'),(5438,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5439,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5440,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5441,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5442,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5443,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5444,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5445,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5446,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5447,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5448,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5449,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5450,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5451,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5452,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5453,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5454,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5455,284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5456,284,'_thumbnail_id','265'),(5457,284,'ef3-team_position','PHP Developer'),(5458,284,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(5459,284,'ef3-team_email','[email protected]'),(5460,284,'ef3-team_phone','+1 (223) 213 2233'),(5461,284,'ef3-team_location','221 Baker Street, London'),(5462,284,'ef3-team_link_title','EMAIL NOW'),(5463,284,'ef3-team_link','#'),(5464,284,'ef3-social_enable','1'),(5465,284,'ef3-team_social_icon_1','fa fa-facebook'),(5466,284,'ef3-team_social_1','#'),(5467,284,'ef3-team_social_icon_2','fa fa-twitter'),(5468,284,'ef3-team_social_2','#'),(5469,284,'ef3-team_social_icon_3','fa fa-google-plus'),(5470,284,'ef3-team_social_3','#'),(5471,284,'ef3-team_social_icon_4','fa fa-linkedin'),(5472,284,'ef3-team_social_4','#'),(5473,284,'ef3-team_link_icon','fa fa-envelope'),(5474,284,'post_views_count','122'),(5475,284,'_wpb_vc_js_status','false'),(5476,284,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5477,284,'_wp_old_slug','merri-alvas-2'),(5478,284,'_wp_old_slug','jon-ronky'),(5479,284,'_wp_old_slug','oliv'),(5480,284,'_wp_old_slug','poll-walqar'),(5481,284,'_wp_old_slug','kile-walker'),(5482,284,'_wp_old_slug','iris-well'),(5483,284,'slide_template','default'),(5484,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5485,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5486,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5487,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5488,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5489,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5490,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5491,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5492,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5493,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5494,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5495,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5496,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5497,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5498,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5499,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5500,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5501,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5502,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5503,285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5504,285,'_thumbnail_id','263'),(5505,285,'ef3-team_position','Web Developer'),(5506,285,'ef3-team_description','You don’t have to reinvent the wheels, right? When you entrust the task of launching a strategy for your latest marketing campaign, you would delivered consistently across different industries.'),(5507,285,'ef3-team_email','[email protected]'),(5508,285,'ef3-team_phone','+1 (223) 213 2233'),(5509,285,'ef3-team_location','221 Baker Street, London'),(5510,285,'ef3-team_link_title','EMAIL NOW'),(5511,285,'ef3-team_link','#'),(5512,285,'ef3-social_enable','1'),(5513,285,'ef3-team_social_icon_1','fa fa-facebook'),(5514,285,'ef3-team_social_1','#'),(5515,285,'ef3-team_social_icon_2','fa fa-twitter'),(5516,285,'ef3-team_social_2','#'),(5517,285,'ef3-team_social_icon_3','fa fa-google-plus'),(5518,285,'ef3-team_social_3','#'),(5519,285,'ef3-team_social_icon_4','fa fa-linkedin'),(5520,285,'ef3-team_social_4','#'),(5521,285,'ef3-team_link_icon','fa fa-envelope'),(5522,285,'post_views_count','214'),(5523,285,'_wpb_vc_js_status','true'),(5524,285,'_wpb_shortcodes_custom_css','.vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1526272100201{padding-top: 45px !important;}.vc_custom_1526272108049{padding-top: 45px !important;}.vc_custom_1526272117750{padding-top: 50px !important;}.vc_custom_1526265894633{margin-bottom: 15px !important;}.vc_custom_1526282296603{margin-bottom: 15px !important;}.vc_custom_1526265976830{margin-bottom: 30px !important;}.vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://dev.joomexp.com/wordpress/acumec/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1526271457835{margin-bottom: 24px !important;}.vc_custom_1526271676612{margin-top: 38px !important;}.vc_custom_1525246240577{margin-bottom: 20px !important;}.vc_custom_1525246245881{margin-bottom: 20px !important;}.vc_custom_1525246250961{margin-bottom: 20px !important;}.vc_custom_1525246263728{margin-bottom: 20px !important;}.vc_custom_1525246258104{margin-bottom: 20px !important;}.vc_custom_1526271992311{margin-bottom: 32px !important;}'),(5525,285,'_wp_old_slug','merri-alvas-2'),(5526,285,'_wp_old_slug','jon-ronky'),(5527,285,'_wp_old_slug','oliv'),(5528,285,'_wp_old_slug','poll-walqar'),(5529,285,'_wp_old_slug','kile-walker'),(5530,285,'_wp_old_slug','iris-well'),(5531,285,'_wp_old_slug','iris-wellson'),(5532,285,'slide_template','default'),(6508,1815,'_wp_attached_file','revslider/9_a_background.jpg'),(6509,1815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:28:\"revslider/9_a_background.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"9_a_background-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"9_a_background-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"9_a_background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"9_a_background-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"9_a_background-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"9_a_background-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"9_a_background-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"9_a_background-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"9_a_background-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:\"9_a_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"9_a_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"9_a_background-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:\"9_a_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"9_a_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6510,1816,'_wp_attached_file','revslider/9_b_background.jpg'),(6511,1816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:28:\"revslider/9_b_background.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"9_b_background-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"9_b_background-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"9_b_background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"9_b_background-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"9_b_background-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"9_b_background-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"9_b_background-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"9_b_background-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"9_b_background-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:\"9_b_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"9_b_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"9_b_background-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:\"9_b_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"9_b_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6512,1817,'_wp_attached_file','revslider/9_c_background.jpg'),(6513,1817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:28:\"revslider/9_c_background.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"9_c_background-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"9_c_background-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"9_c_background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"9_c_background-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"9_c_background-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"9_c_background-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"9_c_background-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"9_c_background-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"9_c_background-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:\"9_c_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"9_c_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"9_c_background-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:\"9_c_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"9_c_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6514,1818,'_wp_attached_file','revslider/70_a-back.jpg'),(6515,1818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:23:\"revslider/70_a-back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"70_a-back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"70_a-back-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"70_a-back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"70_a-back-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"70_a-back-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"70_a-back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"70_a-back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"70_a-back-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"70_a-back-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:\"70_a-back-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"70_a-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"70_a-back-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:\"70_a-back-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"70_a-back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6516,1819,'_wp_attached_file','revslider/70_b_back.jpg'),(6517,1819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:23:\"revslider/70_b_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"70_b_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"70_b_back-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"70_b_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"70_b_back-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"70_b_back-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"70_b_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"70_b_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"70_b_back-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"70_b_back-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:\"70_b_back-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"70_b_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"70_b_back-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:\"70_b_back-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"70_b_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6518,1820,'_wp_attached_file','revslider/70_c_back.jpg'),(6519,1820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:23:\"revslider/70_c_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"70_c_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"70_c_back-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"70_c_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"70_c_back-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"70_c_back-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"70_c_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"70_c_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"70_c_back-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"70_c_back-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:\"70_c_back-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"70_c_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"70_c_back-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:\"70_c_back-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"70_c_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6520,1821,'_wp_attached_file','revslider/18_a_background.jpg'),(6521,1821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:29:\"revslider/18_a_background.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"18_a_background-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"18_a_background-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"18_a_background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"18_a_background-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"18_a_background-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:27:\"18_a_background-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:27:\"18_a_background-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:28:\"18_a_background-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"18_a_background-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:\"18_a_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"18_a_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"18_a_background-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:\"18_a_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"18_a_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6522,1822,'_wp_attached_file','revslider/18_a_letters.png'),(6523,1822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:585;s:6:\"height\";i:323;s:4:\"file\";s:26:\"revslider/18_a_letters.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"18_a_letters-380x323.png\";s:5:\"width\";i:380;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"18_a_letters-370x323.png\";s:5:\"width\";i:370;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"18_a_letters-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:24:\"18_a_letters-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"18_a_letters-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:24:\"18_a_letters-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6524,1823,'_wp_attached_file','revslider/18_b_background.jpg'),(6525,1823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:29:\"revslider/18_b_background.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"18_b_background-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"18_b_background-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"18_b_background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"18_b_background-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"18_b_background-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:27:\"18_b_background-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:27:\"18_b_background-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:28:\"18_b_background-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"18_b_background-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:\"18_b_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"18_b_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"18_b_background-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:\"18_b_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"18_b_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6526,1824,'_wp_attached_file','revslider/18_b_letters.png'),(6527,1824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:833;s:6:\"height\";i:216;s:4:\"file\";s:26:\"revslider/18_b_letters.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"18_b_letters-770x216.png\";s:5:\"width\";i:770;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"18_b_letters-380x216.png\";s:5:\"width\";i:380;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"18_b_letters-768x199.png\";s:5:\"width\";i:768;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"18_b_letters-370x216.png\";s:5:\"width\";i:370;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:24:\"18_b_letters-770x216.png\";s:5:\"width\";i:770;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:24:\"18_b_letters-770x216.png\";s:5:\"width\";i:770;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"18_b_letters-300x216.png\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"18_b_letters-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:24:\"18_b_letters-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"18_b_letters-300x216.png\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"18_b_letters-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:24:\"18_b_letters-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6528,1825,'_wp_attached_file','revslider/18_c_background.jpg'),(6529,1825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:850;s:4:\"file\";s:29:\"revslider/18_c_background.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"18_c_background-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"18_c_background-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"18_c_background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"18_c_background-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"18_c_background-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:27:\"18_c_background-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:27:\"18_c_background-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:28:\"18_c_background-1500x683.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"18_c_background-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:\"18_c_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"18_c_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"18_c_background-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:\"18_c_background-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"18_c_background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6530,1826,'_wp_attached_file','revslider/18_c_letters.png'),(6531,1826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:731;s:6:\"height\";i:355;s:4:\"file\";s:26:\"revslider/18_c_letters.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"18_c_letters-380x355.png\";s:5:\"width\";i:380;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"18_c_letters-370x355.png\";s:5:\"width\";i:370;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"18_c_letters-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:24:\"18_c_letters-600x291.png\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"18_c_letters-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"18_c_letters-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:24:\"18_c_letters-600x291.png\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"18_c_letters-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6532,1750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1170x465.png\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-370x1200.png\";s:5:\"width\";i:370;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x770.png\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x683.png\";s:5:\"width\";i:1200;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6533,1577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1660;s:6:\"height\";i:1360;s:4:\"file\";s:32:\"2018/06/homepage-intro-image.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"homepage-intro-image-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-768x629.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"homepage-intro-image-1536x1258.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"homepage-intro-image-370x1360.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:33:\"homepage-intro-image-1660x683.jpg\";s:5:\"width\";i:1660;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"homepage-intro-image-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:\"homepage-intro-image-600x492.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-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:\"homepage-intro-image-600x492.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"homepage-intro-image-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6534,1569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:293;s:4:\"file\";s:17:\"2018/06/step5.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"step5-380x293.png\";s:5:\"width\";i:380;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"step5-370x293.png\";s:5:\"width\";i:370;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"step5-300x293.png\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"step5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"step5-300x293.png\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"step5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6535,1568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:326;s:4:\"file\";s:17:\"2018/06/step4.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"step4-380x326.png\";s:5:\"width\";i:380;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"step4-370x326.png\";s:5:\"width\";i:370;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"step4-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:17:\"step4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"step4-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:17:\"step4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6536,1567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:274;s:4:\"file\";s:17:\"2018/06/step3.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"step3-380x274.png\";s:5:\"width\";i:380;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"step3-370x274.png\";s:5:\"width\";i:370;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"step3-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"step3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"step3-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"step3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6537,1566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:274;s:4:\"file\";s:17:\"2018/06/step2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"step2-380x274.png\";s:5:\"width\";i:380;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"step2-370x274.png\";s:5:\"width\";i:370;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"step2-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"step2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"step2-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"step2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6538,1565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:274;s:4:\"file\";s:17:\"2018/06/step1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"step1-380x274.png\";s:5:\"width\";i:380;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"step1-370x274.png\";s:5:\"width\";i:370;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"step1-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"step1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"step1-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"step1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6539,1533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:850;s:4:\"file\";s:17:\"2018/06/bg-16.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bg-16-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bg-16-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-16-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"bg-16-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"bg-16-1536x680.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-16-370x850.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"bg-16-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"bg-16-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"bg-16-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"bg-16-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:17:\"bg-16-600x266.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"bg-16-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:17:\"bg-16-600x266.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6540,1531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:829;s:6:\"height\";i:927;s:4:\"file\";s:19:\"2018/06/avatar5.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"avatar5-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"avatar5-829x465.jpg\";s:5:\"width\";i:829;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar5-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"avatar5-768x859.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar5-370x927.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:927;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:19:\"avatar5-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:19:\"avatar5-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:19:\"avatar5-829x683.jpg\";s:5:\"width\";i:829;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"avatar5-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:\"avatar5-600x671.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"avatar5-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:\"avatar5-600x671.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6541,1279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2018/06/chart4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"chart4-380x350.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"chart4-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"chart4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"chart4-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:18:\"chart4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6542,1087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1067;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2018/05/project10.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project10-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"project10-1067x465.png\";s:5:\"width\";i:1067;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project10-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project10-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"project10-370x800.png\";s:5:\"width\";i:370;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"project10-770x770.png\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"project10-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"project10-1067x683.png\";s:5:\"width\";i:1067;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"project10-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:21:\"project10-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"project10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"project10-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:21:\"project10-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"project10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6543,1035,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:696;s:6:\"height\";i:462;s:4:\"file\";s:15:\"2018/06/map.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"map-696x447.png\";s:5:\"width\";i:696;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"map-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"map-370x462.png\";s:5:\"width\";i:370;s:6:\"height\";i:462;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"map-696x375.png\";s:5:\"width\";i:696;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"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:15:\"map-600x398.png\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"map-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"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:15:\"map-600x398.png\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"map-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6544,1017,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:811;s:4:\"file\";s:17:\"2018/06/case2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"case2-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"case2-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"case2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"case2-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"case2-370x811.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"case2-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"case2-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"case2-1170x683.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"case2-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:17:\"case2-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"case2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"case2-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:17:\"case2-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"case2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6545,1016,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:811;s:4:\"file\";s:17:\"2018/06/case4.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"case4-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"case4-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"case4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"case4-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"case4-370x811.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"case4-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"case4-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"case4-1170x683.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"case4-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:17:\"case4-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"case4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"case4-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:17:\"case4-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"case4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6546,1015,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:811;s:4:\"file\";s:17:\"2018/06/case3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"case3-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"case3-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"case3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"case3-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"case3-370x811.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"case3-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"case3-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"case3-1170x683.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"case3-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:17:\"case3-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"case3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"case3-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:17:\"case3-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"case3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6547,1011,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:811;s:4:\"file\";s:17:\"2018/06/case1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"case1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"case1-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"case1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"case1-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"case1-370x811.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"case1-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"case1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"case1-1170x683.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"case1-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:17:\"case1-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"case1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"case1-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:17:\"case1-600x416.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"case1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6548,983,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:390;s:4:\"file\";s:17:\"2018/06/chart.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"chart-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"chart-370x390.png\";s:5:\"width\";i:370;s:6:\"height\";i:390;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"chart-640x375.png\";s:5:\"width\";i:640;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"chart-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:17:\"chart-600x366.png\";s:5:\"width\";i:600;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"chart-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"chart-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:17:\"chart-600x366.png\";s:5:\"width\";i:600;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"chart-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6549,976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:682;s:4:\"file\";s:17:\"2018/06/bg-15.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bg-15-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bg-15-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-15-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"bg-15-768x273.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"bg-15-1536x546.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-15-370x682.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"bg-15-770x682.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"bg-15-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"bg-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:17:\"bg-15-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"bg-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:17:\"bg-15-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6550,968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:249;s:6:\"height\";i:368;s:4:\"file\";s:17:\"2018/06/apolo.png\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"apolo-249x300.png\";s:5:\"width\";i:249;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:17:\"apolo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"apolo-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"apolo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6551,967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:218;s:6:\"height\";i:237;s:4:\"file\";s:18:\"2018/06/arrow1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"arrow1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"arrow1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6552,966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:277;s:6:\"height\";i:173;s:4:\"file\";s:18:\"2018/06/arrow2.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"arrow2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"arrow2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6553,933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:514;s:4:\"file\";s:16:\"2018/06/bg14.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bg14-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg14-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg14-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"bg14-768x206.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bg14-1536x411.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"bg14-370x514.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:16:\"bg14-770x514.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:16:\"bg14-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg14-600x161.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"bg14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg14-600x161.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6554,859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:682;s:4:\"file\";s:16:\"2018/06/bg13.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bg13-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg13-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg13-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"bg13-768x273.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bg13-1536x546.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"bg13-370x682.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:16:\"bg13-770x682.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:16:\"bg13-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg13-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"bg13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg13-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6555,848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:676;s:4:\"file\";s:16:\"2018/06/bg12.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bg12-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg12-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg12-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"bg12-768x270.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bg12-1536x541.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"bg12-370x676.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:16:\"bg12-770x676.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:16:\"bg12-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg12-600x211.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"bg12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg12-600x211.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6556,842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:19:\"2018/06/avatar4.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6557,841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:19:\"2018/06/avatar3.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6558,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:19:\"2018/06/avatar2.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"avatar2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6559,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:748;s:6:\"height\";i:439;s:4:\"file\";s:16:\"2018/06/bg11.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg11-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"bg11-370x439.png\";s:5:\"width\";i:370;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:16:\"bg11-748x375.png\";s:5:\"width\";i:748;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg11-600x352.png\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"bg11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg11-600x352.png\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6560,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:847;s:4:\"file\";s:16:\"2018/06/bg10.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bg10-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg10-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg10-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"bg10-768x339.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bg10-1536x678.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"bg10-370x847.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:847;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:16:\"bg10-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:16:\"bg10-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:17:\"bg10-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg10-600x265.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"bg10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg10-600x265.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6561,754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:682;s:4:\"file\";s:15:\"2018/06/bg9.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg9-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg9-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg9-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg9-768x273.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg9-1536x546.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg9-370x682.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg9-770x682.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg9-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg9-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:15:\"bg9-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg9-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:15:\"bg9-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6562,753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:682;s:4:\"file\";s:15:\"2018/06/bg8.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg8-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg8-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg8-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg8-768x273.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg8-1536x546.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg8-370x682.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg8-770x682.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg8-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg8-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:15:\"bg8-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg8-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:15:\"bg8-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6563,687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:729;s:4:\"file\";s:15:\"2018/05/bg7.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg7-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg7-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg7-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg7-768x292.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg7-1536x583.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg7-370x729.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg7-770x729.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg7-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:16:\"bg7-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg7-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:15:\"bg7-600x228.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg7-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:15:\"bg7-600x228.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6564,675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2018/05/signature.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"signature-100x54.png\";s:5:\"width\";i:100;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"signature-100x54.png\";s:5:\"width\";i:100;s:6:\"height\";i:54;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:{}}}'),(6565,674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:18:\"2018/05/testi2.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:{}}}'),(6566,671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:816;s:6:\"height\";i:611;s:4:\"file\";s:15:\"2018/05/bg6.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg6-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"bg6-816x465.png\";s:5:\"width\";i:816;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg6-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg6-768x575.png\";s:5:\"width\";i:768;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg6-370x611.png\";s:5:\"width\";i:370;s:6:\"height\";i:611;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg6-770x611.png\";s:5:\"width\";i:770;s:6:\"height\";i:611;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg6-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg6-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:15:\"bg6-600x449.png\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg6-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:15:\"bg6-600x449.png\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6567,655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:190;s:4:\"file\";s:15:\"2018/05/bg5.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg5-770x190.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg5-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg5-768x125.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg5-370x190.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg5-770x190.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg5-770x190.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg5-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:14:\"bg5-600x97.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg5-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"bg5-600x97.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6568,632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:955;s:4:\"file\";s:15:\"2018/05/bg4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg4-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg4-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg4-768x382.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg4-1536x764.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg4-370x955.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:955;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg4-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg4-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:16:\"bg4-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg4-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:15:\"bg4-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg4-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:15:\"bg4-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6569,630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1585;s:6:\"height\";i:377;s:4:\"file\";s:15:\"2018/05/bg2.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg2-770x377.png\";s:5:\"width\";i:770;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg2-1170x377.png\";s:5:\"width\";i:1170;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-380x377.png\";s:5:\"width\";i:380;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg2-768x183.png\";s:5:\"width\";i:768;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg2-1536x365.png\";s:5:\"width\";i:1536;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-370x377.png\";s:5:\"width\";i:370;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg2-770x377.png\";s:5:\"width\";i:770;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg2-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg2-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:15:\"bg2-600x143.png\";s:5:\"width\";i:600;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg2-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:15:\"bg2-600x143.png\";s:5:\"width\";i:600;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6570,622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:557;s:4:\"file\";s:15:\"2018/05/bg3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg3-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg3-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg3-768x223.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg3-1536x446.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-370x557.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg3-770x557.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg3-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"bg3-600x174.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"bg3-600x174.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6571,590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_1_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_1_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_1_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_1_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_1_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_1_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_1_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_1_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_1_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_1_back-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:\"T_1_back-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:\"T_1_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_1_back-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:\"T_1_back-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:\"T_1_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6572,589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_1_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_1_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_1_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_1_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_1_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_1_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_1_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_1_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_1_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_1_front-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:\"T_1_front-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:\"T_1_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_1_front-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:\"T_1_front-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:\"T_1_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6573,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_2_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_2_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_2_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_2_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_2_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_2_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_2_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_2_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_2_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_2_back-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:\"T_2_back-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:\"T_2_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_2_back-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:\"T_2_back-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:\"T_2_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6574,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_2_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_2_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_2_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_2_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_2_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_2_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_2_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_2_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_2_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_2_front-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:\"T_2_front-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:\"T_2_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_2_front-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:\"T_2_front-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:\"T_2_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6575,584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/T_4_front1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"T_4_front1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"T_4_front1-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"T_4_front1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"T_4_front1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"T_4_front1-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"T_4_front1-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"T_4_front1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"T_4_front1-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"T_4_front1-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:\"T_4_front1-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:\"T_4_front1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"T_4_front1-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:\"T_4_front1-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:\"T_4_front1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6576,583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_4_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_4_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_4_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_4_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_4_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_4_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_4_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_4_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_4_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_4_back-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:\"T_4_back-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:\"T_4_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_4_back-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:\"T_4_back-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:\"T_4_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6577,582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_3_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_3_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_3_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_3_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_3_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_3_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_3_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_3_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_3_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_3_front-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:\"T_3_front-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:\"T_3_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_3_front-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:\"T_3_front-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:\"T_3_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6578,581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_3_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_3_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_3_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_3_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_3_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_3_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_3_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_3_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_3_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_3_back-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:\"T_3_back-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:\"T_3_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_3_back-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:\"T_3_back-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:\"T_3_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6579,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_4_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_4_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_4_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_4_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_4_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_4_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_4_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_4_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_4_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_4_front-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:\"T_4_front-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:\"T_4_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_4_front-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:\"T_4_front-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:\"T_4_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6580,579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_5_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_5_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_5_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_5_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_5_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_5_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_5_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_5_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_5_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_5_back-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:\"T_5_back-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:\"T_5_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_5_back-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:\"T_5_back-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:\"T_5_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6581,578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_5_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_5_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_5_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_5_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_5_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_5_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_5_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_5_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_5_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_5_front-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:\"T_5_front-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:\"T_5_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_5_front-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:\"T_5_front-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:\"T_5_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6582,577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_6_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_6_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_6_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_6_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_6_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_6_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_6_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_6_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_6_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_6_back-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:\"T_6_back-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:\"T_6_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_6_back-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:\"T_6_back-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:\"T_6_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6583,576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_6_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_6_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_6_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_6_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_6_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_6_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_6_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_6_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_6_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_6_front-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:\"T_6_front-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:\"T_6_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_6_front-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:\"T_6_front-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:\"T_6_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6584,575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2018/05/T_7_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"T_7_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"T_7_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_7_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"T_7_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"T_7_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"T_7_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"T_7_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"T_7_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"T_7_back-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:\"T_7_back-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:\"T_7_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"T_7_back-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:\"T_7_back-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:\"T_7_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6585,574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/T_7_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"T_7_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"T_7_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_7_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"T_7_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T_7_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"T_7_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"T_7_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"T_7_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"T_7_front-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:\"T_7_front-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:\"T_7_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"T_7_front-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:\"T_7_front-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:\"T_7_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6586,571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_1_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_1_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_1_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_1_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_1_front-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:\"hoodie_1_front-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:\"hoodie_1_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-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:\"hoodie_1_front-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:\"hoodie_1_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6587,570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_1_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_1_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_1_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_1_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_1_back-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:\"hoodie_1_back-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:25:\"hoodie_1_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-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:\"hoodie_1_back-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:25:\"hoodie_1_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6588,569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_7_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_7_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_7_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_7_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_7_back-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:\"hoodie_7_back-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:25:\"hoodie_7_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-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:\"hoodie_7_back-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:25:\"hoodie_7_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6589,568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_7_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_7_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_7_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_7_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_7_front-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:\"hoodie_7_front-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:\"hoodie_7_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-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:\"hoodie_7_front-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:\"hoodie_7_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6590,567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_2_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_2_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_2_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_2_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_2_back-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:\"hoodie_2_back-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:25:\"hoodie_2_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-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:\"hoodie_2_back-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:25:\"hoodie_2_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6591,566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_2_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_2_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_2_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_2_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_2_front-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:\"hoodie_2_front-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:\"hoodie_2_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-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:\"hoodie_2_front-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:\"hoodie_2_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6592,564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_3_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_3_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_3_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_3_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_3_back-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:\"hoodie_3_back-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:25:\"hoodie_3_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-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:\"hoodie_3_back-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:25:\"hoodie_3_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6593,563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_3_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_3_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_3_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_3_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_3_front-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:\"hoodie_3_front-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:\"hoodie_3_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-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:\"hoodie_3_front-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:\"hoodie_3_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6594,562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_4_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_4_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_4_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_4_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_4_back-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:\"hoodie_4_back-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:25:\"hoodie_4_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-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:\"hoodie_4_back-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:25:\"hoodie_4_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6595,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_4_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_4_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_4_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_4_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_4_front-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:\"hoodie_4_front-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:\"hoodie_4_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-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:\"hoodie_4_front-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:\"hoodie_4_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6596,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_5_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_5_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_5_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_5_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_5_back-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:\"hoodie_5_back-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:25:\"hoodie_5_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-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:\"hoodie_5_back-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:25:\"hoodie_5_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6597,559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_5_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_5_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_5_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_5_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_5_front-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:\"hoodie_5_front-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:\"hoodie_5_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-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:\"hoodie_5_front-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:\"hoodie_5_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6598,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/hoodie_6_back.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hoodie_6_back-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_6_back-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"hoodie_6_back-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hoodie_6_back-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:\"hoodie_6_back-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:25:\"hoodie_6_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-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:\"hoodie_6_back-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:25:\"hoodie_6_back-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6599,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/05/hoodie_6_front.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"hoodie_6_front-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"hoodie_6_front-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"hoodie_6_front-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"hoodie_6_front-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:\"hoodie_6_front-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:\"hoodie_6_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-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:\"hoodie_6_front-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:\"hoodie_6_front-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6600,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/Poster_1_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Poster_1_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Poster_1_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"Poster_1_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Poster_1_flat-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:\"Poster_1_flat-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:25:\"Poster_1_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-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:\"Poster_1_flat-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:25:\"Poster_1_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6601,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2018/05/poster_1_up.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"poster_1_up-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"poster_1_up-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_1_up-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"poster_1_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"poster_1_up-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:23:\"poster_1_up-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:23:\"poster_1_up-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:24:\"poster_1_up-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"poster_1_up-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:\"poster_1_up-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:\"poster_1_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"poster_1_up-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:\"poster_1_up-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:\"poster_1_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6602,552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/Poster_2_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Poster_2_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Poster_2_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"Poster_2_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Poster_2_flat-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:\"Poster_2_flat-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:25:\"Poster_2_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-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:\"Poster_2_flat-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:25:\"Poster_2_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6603,551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2018/05/poster_2_up.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"poster_2_up-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"poster_2_up-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_2_up-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"poster_2_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"poster_2_up-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:23:\"poster_2_up-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:23:\"poster_2_up-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:24:\"poster_2_up-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"poster_2_up-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:\"poster_2_up-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:\"poster_2_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"poster_2_up-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:\"poster_2_up-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:\"poster_2_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6604,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/Poster_3_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Poster_3_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Poster_3_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"Poster_3_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Poster_3_flat-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:\"Poster_3_flat-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:25:\"Poster_3_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-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:\"Poster_3_flat-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:25:\"Poster_3_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6605,548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2018/05/poster_3_up.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"poster_3_up-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"poster_3_up-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_3_up-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"poster_3_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"poster_3_up-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:23:\"poster_3_up-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:23:\"poster_3_up-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:24:\"poster_3_up-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"poster_3_up-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:\"poster_3_up-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:\"poster_3_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"poster_3_up-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:\"poster_3_up-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:\"poster_3_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6606,546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/Poster_4_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Poster_4_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Poster_4_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"Poster_4_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Poster_4_flat-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:\"Poster_4_flat-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:25:\"Poster_4_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-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:\"Poster_4_flat-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:25:\"Poster_4_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6607,545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2018/05/poster_4_up.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"poster_4_up-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"poster_4_up-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_4_up-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"poster_4_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"poster_4_up-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:23:\"poster_4_up-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:23:\"poster_4_up-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:24:\"poster_4_up-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"poster_4_up-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:\"poster_4_up-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:\"poster_4_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"poster_4_up-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:\"poster_4_up-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:\"poster_4_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6608,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2018/05/Poster_5_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Poster_5_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Poster_5_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:26:\"Poster_5_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Poster_5_flat-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:\"Poster_5_flat-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:25:\"Poster_5_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-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:\"Poster_5_flat-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:25:\"Poster_5_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6609,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2018/05/poster_5_up.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"poster_5_up-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"poster_5_up-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_5_up-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"poster_5_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"poster_5_up-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:23:\"poster_5_up-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:23:\"poster_5_up-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:24:\"poster_5_up-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"poster_5_up-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:\"poster_5_up-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:\"poster_5_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"poster_5_up-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:\"poster_5_up-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:\"poster_5_up-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6610,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/cd_1_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cd_1_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_1_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"cd_1_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"cd_1_flat-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:\"cd_1_flat-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:\"cd_1_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-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:\"cd_1_flat-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:\"cd_1_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6611,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/cd_1_angle.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cd_1_angle-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cd_1_angle-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"cd_1_angle-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cd_1_angle-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:\"cd_1_angle-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:\"cd_1_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-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:\"cd_1_angle-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:\"cd_1_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6612,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/cd_2_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cd_2_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_2_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"cd_2_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"cd_2_flat-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:\"cd_2_flat-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:\"cd_2_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-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:\"cd_2_flat-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:\"cd_2_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6613,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/cd_2_angle.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cd_2_angle-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cd_2_angle-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"cd_2_angle-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cd_2_angle-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:\"cd_2_angle-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:\"cd_2_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-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:\"cd_2_angle-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:\"cd_2_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6614,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/cd_3_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cd_3_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_3_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"cd_3_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"cd_3_flat-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:\"cd_3_flat-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:\"cd_3_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-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:\"cd_3_flat-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:\"cd_3_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6615,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/cd_3_angle.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cd_3_angle-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cd_3_angle-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"cd_3_angle-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cd_3_angle-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:\"cd_3_angle-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:\"cd_3_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-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:\"cd_3_angle-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:\"cd_3_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6616,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/cd_5_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cd_5_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_5_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"cd_5_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"cd_5_flat-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:\"cd_5_flat-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:\"cd_5_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-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:\"cd_5_flat-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:\"cd_5_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6617,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/cd_5_angle.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cd_5_angle-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cd_5_angle-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"cd_5_angle-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cd_5_angle-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:\"cd_5_angle-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:\"cd_5_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-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:\"cd_5_angle-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:\"cd_5_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6618,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/cd_4_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cd_4_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_4_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"cd_4_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"cd_4_flat-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:\"cd_4_flat-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:\"cd_4_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-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:\"cd_4_flat-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:\"cd_4_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6619,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/cd_4_angle.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cd_4_angle-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cd_4_angle-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"cd_4_angle-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cd_4_angle-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:\"cd_4_angle-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:\"cd_4_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-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:\"cd_4_angle-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:\"cd_4_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6620,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2018/05/cd_6_flat.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cd_6_flat-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_6_flat-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:22:\"cd_6_flat-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"cd_6_flat-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:\"cd_6_flat-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:\"cd_6_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-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:\"cd_6_flat-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:\"cd_6_flat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6621,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2018/05/cd_6_angle.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cd_6_angle-1000x465.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cd_6_angle-370x1000.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:23:\"cd_6_angle-1000x683.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cd_6_angle-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:\"cd_6_angle-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:\"cd_6_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-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:\"cd_6_angle-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:\"cd_6_angle-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6622,438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:780;s:4:\"file\";s:15:\"2018/05/bg1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg1-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg1-768x312.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg1-1536x624.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bg1-370x780.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:15:\"bg1-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:15:\"bg1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:16:\"bg1-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg1-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:15:\"bg1-600x244.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bg1-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:15:\"bg1-600x244.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6623,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:122;s:6:\"height\";i:148;s:4:\"file\";s:20:\"2018/05/pricing1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"pricing1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"pricing1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6624,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:122;s:6:\"height\";i:149;s:4:\"file\";s:20:\"2018/05/pricing3.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"pricing3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"pricing3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6625,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:122;s:6:\"height\";i:149;s:4:\"file\";s:20:\"2018/05/pricing2.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"pricing2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"pricing2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6626,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:221;s:4:\"file\";s:27:\"2018/05/service_detail2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail2-380x221.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail2-370x221.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"service_detail2-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"service_detail2-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6627,330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:695;s:4:\"file\";s:27:\"2018/05/service_detail1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"service_detail1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"service_detail1-770x465.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"service_detail1-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail1-370x695.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:27:\"service_detail1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:27:\"service_detail1-770x683.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"service_detail1-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:\"service_detail1-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"service_detail1-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:\"service_detail1-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"service_detail1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6628,329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service22.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:{}}}'),(6629,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:91;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service21.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:{}}}'),(6630,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service20.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:{}}}'),(6631,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service19.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:{}}}'),(6632,325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service18.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:{}}}'),(6633,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:81;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service17.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:{}}}'),(6634,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service16.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:{}}}'),(6635,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service15.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:{}}}'),(6636,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service14.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:{}}}'),(6637,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service13.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:{}}}'),(6638,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service12.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:{}}}'),(6639,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service11.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:{}}}'),(6640,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2018/05/service10.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:{}}}'),(6641,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service9.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:{}}}'),(6642,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service8.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:{}}}'),(6643,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service7.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:{}}}'),(6644,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service6.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:{}}}'),(6645,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:79;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service5.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:{}}}'),(6646,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:101;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service4.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:{}}}'),(6647,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service3.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:{}}}'),(6648,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:98;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service2.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:{}}}'),(6649,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2018/05/service1.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:{}}}'),(6650,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team8.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team8-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"team8-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:17:\"team8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"team8-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:17:\"team8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6651,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team7.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team7-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"team7-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:17:\"team7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"team7-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:17:\"team7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6652,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team6.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team6-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"team6-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:17:\"team6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"team6-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:17:\"team6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6653,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team5.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team5-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"team5-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:17:\"team5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"team5-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:17:\"team5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6654,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team4-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"team4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"team4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6655,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team3-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"team3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"team3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6656,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team2-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"team2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"team2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6657,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:411;s:4:\"file\";s:17:\"2018/05/team1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"team1-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"team1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"team1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6658,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:18;s:4:\"file\";s:20:\"2018/05/counter4.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:{}}}'),(6659,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:19;s:4:\"file\";s:20:\"2018/05/counter3.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:{}}}'),(6660,227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:17;s:4:\"file\";s:20:\"2018/05/counter2.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:{}}}'),(6661,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:58;s:6:\"height\";i:20;s:4:\"file\";s:20:\"2018/05/counter1.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:{}}}'),(6662,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:784;s:6:\"height\";i:241;s:4:\"file\";s:18:\"2018/05/chart3.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"chart3-770x241.png\";s:5:\"width\";i:770;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"chart3-380x241.png\";s:5:\"width\";i:380;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"chart3-768x236.png\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"chart3-370x241.png\";s:5:\"width\";i:370;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:18:\"chart3-770x241.png\";s:5:\"width\";i:770;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:18:\"chart3-770x241.png\";s:5:\"width\";i:770;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"chart3-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"chart3-600x184.png\";s:5:\"width\";i:600;s:6:\"height\";i:184;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"chart3-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"chart3-600x184.png\";s:5:\"width\";i:600;s:6:\"height\";i:184;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6663,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:345;s:4:\"file\";s:19:\"2018/05/detail1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"detail1-770x345.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"detail1-380x345.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"detail1-768x305.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"detail1-370x345.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:19:\"detail1-770x345.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:19:\"detail1-770x345.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"detail1-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:\"detail1-600x238.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"detail1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"detail1-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:\"detail1-600x238.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"detail1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6664,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:849;s:6:\"height\";i:371;s:4:\"file\";s:18:\"2018/05/chart2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"chart2-770x371.png\";s:5:\"width\";i:770;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"chart2-380x371.png\";s:5:\"width\";i:380;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"chart2-768x336.png\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"chart2-370x371.png\";s:5:\"width\";i:370;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:18:\"chart2-770x371.png\";s:5:\"width\";i:770;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:18:\"chart2-770x371.png\";s:5:\"width\";i:770;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"chart2-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:\"chart2-600x262.png\";s:5:\"width\";i:600;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"chart2-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:\"chart2-600x262.png\";s:5:\"width\";i:600;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6665,220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:56;s:6:\"height\";i:56;s:4:\"file\";s:19:\"2018/05/avatar1.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:{}}}'),(6666,209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:913;s:4:\"file\";s:20:\"2018/05/project1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project1-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project1-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"project1-370x913.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:913;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project1-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project1-1240x683.jpg\";s:5:\"width\";i:1240;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project1-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:\"project1-600x442.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"project1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project1-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:\"project1-600x442.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"project1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6667,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2018/05/project8.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project8-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project8-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project8-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"project8-370x800.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project8-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project8-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project8-1200x683.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project8-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:\"project8-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:20:\"project8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project8-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:\"project8-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:20:\"project8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6668,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:775;s:4:\"file\";s:20:\"2018/05/project7.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project7-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project7-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project7-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project7-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"project7-370x775.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project7-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project7-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project7-1240x683.jpg\";s:5:\"width\";i:1240;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project7-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:\"project7-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:\"project7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project7-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:\"project7-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:\"project7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6669,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2018/05/project6.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project6-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project6-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"project6-370x800.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project6-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project6-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project6-1200x683.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project6-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:\"project6-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:20:\"project6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project6-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:\"project6-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:20:\"project6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6670,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:902;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/05/project5.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project5-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"project5-902x465.jpg\";s:5:\"width\";i:902;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project5-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project5-768x1022.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"project5-370x1200.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project5-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project5-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:20:\"project5-902x683.jpg\";s:5:\"width\";i:902;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project5-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:\"project5-600x798.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"project5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project5-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:\"project5-600x798.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"project5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6671,203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2002;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2018/05/project4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project4-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project4-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project4-768x575.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"project4-1536x1151.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"project4-370x1500.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project4-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project4-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project4-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project4-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:\"project4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"project4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project4-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:\"project4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"project4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6672,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:758;s:4:\"file\";s:20:\"2018/05/project3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project3-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project3-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project3-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"project3-370x758.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:758;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project3-770x758.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:758;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project3-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project3-1240x683.jpg\";s:5:\"width\";i:1240;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project3-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:\"project3-600x367.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"project3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project3-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:\"project3-600x367.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"project3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6673,201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:875;s:4:\"file\";s:20:\"2018/05/project2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"project2-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"project2-1100x465.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"project2-768x611.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:611;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"project2-370x875.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:875;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:20:\"project2-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:20:\"project2-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:21:\"project2-1100x683.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"project2-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:\"project2-600x477.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"project2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"project2-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:\"project2-600x477.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"project2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6674,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:15:\"2018/05/404.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:{}}}'),(6675,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1251;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2018/04/blog2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog2-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog2-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog2-768x368.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-370x600.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog2-770x600.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog2-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"blog2-600x288.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"blog2-600x288.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6676,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:254;s:4:\"file\";s:22:\"2018/04/bg-sidebar.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6677,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:450;s:4:\"file\";s:21:\"2018/04/bg-footer.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-footer-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"bg-footer-1170x450.png\";s:5:\"width\";i:1170;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"bg-footer-768x180.png\";s:5:\"width\";i:768;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"bg-footer-1536x360.png\";s:5:\"width\";i:1536;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer-370x450.png\";s:5:\"width\";i:370;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:21:\"bg-footer-770x450.png\";s:5:\"width\";i:770;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:21:\"bg-footer-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"bg-footer-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:21:\"bg-footer-600x141.png\";s:5:\"width\";i:600;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"bg-footer-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:21:\"bg-footer-600x141.png\";s:5:\"width\";i:600;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6678,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:213;s:6:\"height\";i:46;s:4:\"file\";s:22:\"2018/04/logo_white.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"logo_white-100x46.png\";s:5:\"width\";i:100;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"logo_white-100x46.png\";s:5:\"width\";i:100;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:{}}}'),(6679,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:213;s:6:\"height\";i:46;s:4:\"file\";s:16:\"2018/04/logo.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-100x46.png\";s:5:\"width\";i:100;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-100x46.png\";s:5:\"width\";i:100;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:{}}}'),(6680,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:129;s:6:\"height\";i:36;s:4:\"file\";s:18:\"2018/04/brand6.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand6-100x36.png\";s:5:\"width\";i:100;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand6-100x36.png\";s:5:\"width\";i:100;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:{}}}'),(6681,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:66;s:4:\"file\";s:18:\"2018/04/brand5.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand5-100x66.png\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand5-100x66.png\";s:5:\"width\";i:100;s:6:\"height\";i:66;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:{}}}'),(6682,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:70;s:4:\"file\";s:18:\"2018/04/brand4.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand4-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand4-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;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:{}}}'),(6683,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:133;s:6:\"height\";i:61;s:4:\"file\";s:18:\"2018/04/brand3.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand3-100x61.png\";s:5:\"width\";i:100;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand3-100x61.png\";s:5:\"width\";i:100;s:6:\"height\";i:61;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:{}}}'),(6684,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:153;s:6:\"height\";i:70;s:4:\"file\";s:18:\"2018/04/brand2.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand2-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand2-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;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:{}}}'),(6685,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:129;s:6:\"height\";i:70;s:4:\"file\";s:18:\"2018/04/brand1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand1-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"brand1-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;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:{}}}'),(6686,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2018/04/blog8.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog8-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog8-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog8-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"blog8-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"blog8-370x1280.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog8-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog8-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog8-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"blog8-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:17:\"blog8-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:17:\"blog8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"blog8-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:17:\"blog8-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:17:\"blog8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6687,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:17:\"2018/04/blog4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog4-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog4-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"blog4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"blog4-370x1365.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog4-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog4-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog4-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"blog4-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:17:\"blog4-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:17:\"blog4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"blog4-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:17:\"blog4-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:17:\"blog4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6688,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1332;s:4:\"file\";s:17:\"2018/04/blog9.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog9-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog9-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog9-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog9-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"blog9-1536x1137.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"blog9-370x1332.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog9-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog9-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog9-1800x683.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"blog9-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:17:\"blog9-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"blog9-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:17:\"blog9-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6689,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:17:\"2018/04/blog7.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog7-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog7-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog7-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog7-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:18:\"blog7-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog7-370x901.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:901;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog7-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog7-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog7-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"blog7-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:17:\"blog7-600x282.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"blog7-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:17:\"blog7-600x282.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6690,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:867;s:4:\"file\";s:17:\"2018/04/blog6.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog6-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog6-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog6-370x867.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:867;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog6-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog6-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog6-1300x683.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"blog6-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:17:\"blog6-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:17:\"blog6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"blog6-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:17:\"blog6-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:17:\"blog6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6691,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1255;s:6:\"height\";i:836;s:4:\"file\";s:17:\"2018/04/blog5.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog5-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog5-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog5-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog5-370x836.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:836;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog5-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog5-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog5-1255x683.jpg\";s:5:\"width\";i:1255;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"blog5-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:17:\"blog5-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:17:\"blog5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"blog5-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:17:\"blog5-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:17:\"blog5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6692,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2121;s:6:\"height\";i:1414;s:4:\"file\";s:17:\"2018/04/blog3.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog3-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog3-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"blog3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:19:\"blog3-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"blog3-370x1414.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:1414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog3-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog3-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog3-1920x683.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"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:17:\"blog3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"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:17:\"blog3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6693,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:782;s:4:\"file\";s:17:\"2018/04/blog1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog1-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-370x782.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:782;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:17:\"blog1-770x770.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:17:\"blog1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"acumec-1920-683\";a:4:{s:4:\"file\";s:18:\"blog1-1170x683.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"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:17:\"blog1-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"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:17:\"blog1-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6694,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:379;s:4:\"file\";s:18:\"2018/03/chart1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"chart1-770x379.png\";s:5:\"width\";i:770;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"chart1-380x379.png\";s:5:\"width\";i:380;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"chart1-768x353.png\";s:5:\"width\";i:768;s:6:\"height\";i:353;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"chart1-370x379.png\";s:5:\"width\";i:370;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:18:\"chart1-770x379.png\";s:5:\"width\";i:770;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:18:\"chart1-770x375.png\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"chart1-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:\"chart1-600x276.png\";s:5:\"width\";i:600;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"chart1-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:\"chart1-600x276.png\";s:5:\"width\";i:600;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"chart1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6695,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2018/04/page-title.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"page-title-770x250.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"page-title-1170x250.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"page-title-380x250.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"page-title-768x100.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"page-title-1536x200.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"page-title-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-770\";a:4:{s:4:\"file\";s:22:\"page-title-770x250.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:22:\"page-title-770x250.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"page-title-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"page-title-600x78.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"page-title-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"page-title-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"page-title-600x78.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"page-title-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6696,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:403;s:4:\"file\";s:25:\"2018/03/blog_detail-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-370x403.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"acumec-770-375\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-770x375.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"blog_detail-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-600x314.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-600x314.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"blog_detail-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6705,1829,'_elementor_edit_mode','builder'),(6706,1829,'_elementor_template_type','kit'),(6707,1829,'_elementor_version','3.0.11'),(6708,1830,'_wp_attached_file','2020/10/log_file_2020-10-13__11-59-07.txt'),(6709,17,'_wp_attached_file','2019/12/home-01.jpg'),(6710,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2019/12/home-01.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"home-01-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"home-01-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"home-01-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"home-01-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:19:\"home-01-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:19:\"home-01-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:19:\"home-01-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"home-01-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"home-01-1536x720.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:19:\"home-01-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:19:\"home-01-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:19:\"home-01-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:19:\"home-01-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:19:\"home-01-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:19:\"home-01-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"home-01-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:19:\"home-01-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:19:\"home-01-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:19:\"home-01-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:19:\"home-01-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6712,18,'_wp_attached_file','2019/12/small_memphis_right-min.png'),(6713,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:75;s:4:\"file\";s:35:\"2019/12/small_memphis_right-min.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:33:\"small_memphis_right-min-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:33:\"small_memphis_right-min-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6715,19,'_wp_attached_file','2019/12/small_memphis_left-min.png'),(6716,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:129;s:6:\"height\";i:119;s:4:\"file\";s:34:\"2019/12/small_memphis_left-min.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:32:\"small_memphis_left-min-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:32:\"small_memphis_left-min-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6718,20,'_wp_attached_file','2019/12/big_memphis-min.png'),(6719,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:465;s:4:\"file\";s:27:\"2019/12/big_memphis-min.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-438x447.png\";s:5:\"width\";i:438;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:25:\"big_memphis-min-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-438x400.png\";s:5:\"width\";i:438;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-438x352.png\";s:5:\"width\";i:438;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-438x352.png\";s:5:\"width\";i:438;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:25:\"big_memphis-min-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:27:\"big_memphis-min-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6721,29,'_wp_attached_file','2019/12/about_img-min.jpg'),(6722,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:388;s:6:\"height\";i:475;s:4:\"file\";s:25:\"2019/12/about_img-min.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x447.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x465.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"about_img-min-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:25:\"about_img-min-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:25:\"about_img-min-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:25:\"about_img-min-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:23:\"about_img-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x400.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x470.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x352.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:25:\"about_img-min-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x352.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:25:\"about_img-min-388x352.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:23:\"about_img-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:25:\"about_img-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:25:\"about_img-min-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:25:\"about_img-min-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:25:\"about_img-min-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6724,37,'_wp_attached_file','2019/12/dot.png'),(6725,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:227;s:4:\"file\";s:15:\"2019/12/dot.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:13:\"dot-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:13:\"dot-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6727,40,'_wp_attached_file','2019/12/title-br.png'),(6728,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:101;s:6:\"height\";i:6;s:4:\"file\";s:20:\"2019/12/title-br.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"title-br-50x6.png\";s:5:\"width\";i:50;s:6:\"height\";i:6;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"title-br-50x6.png\";s:5:\"width\";i:50;s:6:\"height\";i:6;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:{}}}'),(6730,50,'_wp_attached_file','2019/12/service-patterns.jpg'),(6731,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:686;s:4:\"file\";s:28:\"2019/12/service-patterns.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"service-patterns-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"service-patterns-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"service-patterns-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"service-patterns-768x274.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:28:\"service-patterns-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:28:\"service-patterns-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:28:\"service-patterns-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:26:\"service-patterns-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"service-patterns-1536x549.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:28:\"service-patterns-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:28:\"service-patterns-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:28:\"service-patterns-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:28:\"service-patterns-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:28:\"service-patterns-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:28:\"service-patterns-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:26:\"service-patterns-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:28:\"service-patterns-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:28:\"service-patterns-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:28:\"service-patterns-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:28:\"service-patterns-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6733,1831,'_wp_attached_file','2019/12/service_dot.png'),(6734,1831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:176;s:4:\"file\";s:23:\"2019/12/service_dot.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"service_dot-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"service_dot-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6736,63,'_wp_attached_file','2019/12/circle_img.png'),(6737,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2019/12/circle_img.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"circle_img-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"circle_img-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6739,1832,'_wp_attached_file','2019/12/promo.png'),(6740,1832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:35;s:6:\"height\";i:35;s:4:\"file\";s:17:\"2019/12/promo.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:{}}}'),(6742,66,'_wp_attached_file','2019/12/shap_circle-min.png'),(6743,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:320;s:4:\"file\";s:27:\"2019/12/shap_circle-min.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-770x320.png\";s:5:\"width\";i:770;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"shap_circle-min-1170x320.png\";s:5:\"width\";i:1170;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-380x320.png\";s:5:\"width\";i:380;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-768x128.png\";s:5:\"width\";i:768;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:25:\"shap_circle-min-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"shap_circle-min-1536x256.png\";s:5:\"width\";i:1536;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-970x320.png\";s:5:\"width\";i:970;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-840x320.png\";s:5:\"width\";i:840;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-410x320.png\";s:5:\"width\";i:410;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-700x320.png\";s:5:\"width\";i:700;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:25:\"shap_circle-min-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-300x320.png\";s:5:\"width\";i:300;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:27:\"shap_circle-min-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6745,90,'_wp_attached_file','2019/12/project_01.jpg'),(6746,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2019/12/project_01.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"project_01-470x447.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"project_01-470x465.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_01-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_01-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_01-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_01-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_01-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_01-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:22:\"project_01-470x470.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_01-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_01-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_01-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_01-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_01-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_01-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_01-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_01-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_01-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6747,90,'_wxr_import_parent','77'),(6748,91,'_wp_attached_file','2019/12/pr_details_1.jpg'),(6749,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:470;s:4:\"file\";s:24:\"2019/12/pr_details_1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"pr_details_1-400x447.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"pr_details_1-400x465.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"pr_details_1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"pr_details_1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"pr_details_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"pr_details_1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"pr_details_1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"pr_details_1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"pr_details_1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"pr_details_1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"pr_details_1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"pr_details_1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"pr_details_1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6750,91,'_wxr_import_parent','77'),(6751,102,'_wp_attached_file','2019/12/pr-04.jpg'),(6752,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:310;s:4:\"file\";s:17:\"2019/12/pr-04.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pr-04-380x310.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"pr-04-370x310.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"pr-04-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"pr-04-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"pr-04-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"pr-04-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"pr-04-410x310.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"pr-04-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"pr-04-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"pr-04-370x310.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"pr-04-300x310.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"pr-04-355x310.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:310;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:{}}}'),(6753,102,'_wxr_import_parent','93'),(6754,104,'_wp_attached_file','2019/12/pr-05.jpg'),(6755,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:310;s:4:\"file\";s:17:\"2019/12/pr-05.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pr-05-380x310.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"pr-05-370x310.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"pr-05-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"pr-05-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"pr-05-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"pr-05-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"pr-05-410x310.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"pr-05-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"pr-05-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"pr-05-370x310.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"pr-05-300x310.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"pr-05-355x310.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:310;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:{}}}'),(6757,107,'_wp_attached_file','2019/12/project_01-1.jpg'),(6758,107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:540;s:4:\"file\";s:24:\"2019/12/project_01-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"project_01-1-470x447.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"project_01-1-470x465.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"project_01-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"project_01-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"project_01-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"project_01-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"project_01-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"project_01-1-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:24:\"project_01-1-470x470.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"project_01-1-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"project_01-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"project_01-1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"project_01-1-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"project_01-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"project_01-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"project_01-1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"project_01-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"project_01-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6759,107,'_wxr_import_parent','77'),(6760,108,'_wp_attached_file','2019/12/project_02.jpg'),(6761,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2019/12/project_02.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_02-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_02-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_02-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_02-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_02-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_02-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_02-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_02-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_02-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_02-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_02-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_02-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_02-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_02-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_02-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6762,108,'_wxr_import_parent','77'),(6763,109,'_wp_attached_file','2019/12/project_03.jpg'),(6764,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2019/12/project_03.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_03-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_03-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_03-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_03-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_03-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_03-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_03-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_03-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_03-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_03-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_03-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_03-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_03-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_03-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_03-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6765,109,'_wxr_import_parent','77'),(6766,110,'_wp_attached_file','2019/12/project_04.jpg'),(6767,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2019/12/project_04.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"project_04-470x447.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"project_04-470x465.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_04-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_04-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_04-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_04-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_04-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_04-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:22:\"project_04-470x470.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_04-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_04-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_04-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_04-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_04-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_04-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_04-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_04-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_04-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6768,110,'_wxr_import_parent','77'),(6769,111,'_wp_attached_file','2019/12/project_05.jpg'),(6770,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2019/12/project_05.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_05-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_05-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_05-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_05-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_05-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_05-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_05-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_05-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_05-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_05-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_05-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_05-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_05-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_05-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_05-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6771,111,'_wxr_import_parent','77'),(6772,112,'_wp_attached_file','2019/12/project_06.jpg'),(6773,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2019/12/project_06.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"project_06-470x447.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"project_06-470x465.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_06-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_06-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_06-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_06-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_06-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_06-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:22:\"project_06-470x470.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_06-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_06-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_06-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_06-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_06-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_06-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_06-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_06-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_06-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6774,112,'_wxr_import_parent','77'),(6775,113,'_wp_attached_file','2019/12/project_07.jpg'),(6776,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2019/12/project_07.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_07-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_07-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_07-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_07-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_07-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_07-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_07-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_07-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_07-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_07-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_07-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_07-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_07-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_07-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_07-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6777,113,'_wxr_import_parent','77'),(6778,114,'_wp_attached_file','2019/12/project_08.jpg'),(6779,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2019/12/project_08.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project_08-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project_08-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project_08-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project_08-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project_08-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"project_08-470x400.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"project_08-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project_08-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project_08-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"project_08-470x352.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project_08-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project_08-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project_08-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project_08-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project_08-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6780,114,'_wxr_import_parent','77'),(6781,135,'_wp_attached_file','2019/12/video_bg-min.jpg'),(6782,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:24:\"2019/12/video_bg-min.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"video_bg-min-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"video_bg-min-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"video_bg-min-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"video_bg-min-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"video_bg-min-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"video_bg-min-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"video_bg-min-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"video_bg-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"video_bg-min-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"video_bg-min-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:24:\"video_bg-min-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"video_bg-min-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"video_bg-min-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"video_bg-min-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"video_bg-min-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"video_bg-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"video_bg-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"video_bg-min-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"video_bg-min-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"video_bg-min-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6784,146,'_wp_attached_file','2019/12/team1-min.jpg'),(6785,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:21:\"2019/12/team1-min.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"team1-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"team1-min-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"team1-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"team1-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(6786,147,'_wp_attached_file','2019/12/team5-min.jpg'),(6787,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:21:\"2019/12/team5-min.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"team5-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"team5-min-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"team5-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"team5-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(6788,148,'_wp_attached_file','2019/12/team3-min.jpg'),(6789,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:21:\"2019/12/team3-min.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"team3-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"team3-min-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"team3-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"team3-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(6790,149,'_wp_attached_file','2019/12/team4-min.jpg'),(6791,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:21:\"2019/12/team4-min.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"team4-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"team4-min-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"team4-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"team4-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(6792,150,'_wp_attached_file','2019/12/team2-min.jpg'),(6793,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:21:\"2019/12/team2-min.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"team2-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"team2-min-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"team2-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"team2-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(6794,1833,'_wp_attached_file','2019/12/icon.png'),(6795,1833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:16:\"2019/12/icon.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:{}}}'),(6796,173,'_wp_attached_file','2019/12/single_post.jpg'),(6797,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2019/12/single_post.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"single_post-320x380.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:23:\"single_post-320x350.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:23:\"single_post-320x300.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:23:\"single_post-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"single_post-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:23:\"single_post-320x352.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:23:\"single_post-320x240.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:23:\"single_post-320x352.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:23:\"single_post-320x352.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"single_post-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:23:\"single_post-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:23:\"single_post-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:23:\"single_post-320x317.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:317;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:{}}}'),(6799,174,'_wp_attached_file','2019/12/img_1-min.jpg'),(6800,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:970;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2019/12/img_1-min.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"img_1-min-770x400.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"img_1-min-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"img_1-min-768x317.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:21:\"img_1-min-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"img_1-min-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"img_1-min-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"img_1-min-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:21:\"img_1-min-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:21:\"img_1-min-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"img_1-min-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:21:\"img_1-min-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:21:\"img_1-min-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"img_1-min-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"img_1-min-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:21:\"img_1-min-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:21:\"img_1-min-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"img_1-min-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6802,178,'_wp_attached_file','2019/12/img_2.jpg'),(6803,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:970;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2019/12/img_2.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img_2-770x400.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img_2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img_2-768x317.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"img_2-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"img_2-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"img_2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"img_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:17:\"img_2-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"img_2-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"img_2-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"img_2-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"img_2-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"img_2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"img_2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"img_2-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"img_2-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"img_2-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6805,180,'_wp_attached_file','2019/12/img_3.jpg'),(6806,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:970;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2019/12/img_3.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img_3-770x400.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img_3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img_3-768x317.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"img_3-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"img_3-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"img_3-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"img_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:17:\"img_3-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"img_3-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"img_3-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"img_3-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"img_3-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"img_3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"img_3-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"img_3-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"img_3-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"img_3-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6808,190,'_wp_attached_file','2019/12/mail.png'),(6809,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:21;s:4:\"file\";s:16:\"2019/12/mail.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:{}}}'),(6811,1834,'_wp_attached_file','2019/12/[email protected]'),(6812,1834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:254;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2019/12/[email protected]\";s:5:\"sizes\";a:4:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"[email protected]\";s:5:\"width\";i:250;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"[email protected]\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"[email protected]\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"[email protected]\";s:5:\"width\";i:248;s:6:\"height\";i:110;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:{}}}'),(6813,1835,'_wp_attached_file','2019/12/service_bg.jpg'),(6814,1835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2019/12/service_bg.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"service_bg-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"service_bg-1170x450.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"service_bg-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"service_bg-768x180.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"service_bg-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"service_bg-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"service_bg-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"service_bg-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"service_bg-1536x360.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"service_bg-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:22:\"service_bg-840x450.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:22:\"service_bg-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"service_bg-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"service_bg-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:22:\"service_bg-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"service_bg-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"service_bg-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"service_bg-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"service_bg-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"service_bg-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6816,1836,'_wp_attached_file','2019/12/service_details_icon.png'),(6817,1836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:51;s:6:\"height\";i:50;s:4:\"file\";s:32:\"2019/12/service_details_icon.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:30:\"service_details_icon-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6818,1836,'_wxr_import_parent','222'),(6819,1837,'_wp_attached_file','2019/12/team_1.jpg'),(6820,1837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2019/12/team_1.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_1-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6821,1837,'_wxr_import_parent','278'),(6822,1838,'_wp_attached_file','2019/12/team_single.jpg'),(6823,1838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2019/12/team_single.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"team_single-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:23:\"team_single-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:23:\"team_single-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:23:\"team_single-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"team_single-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:23:\"team_single-370x352.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:23:\"team_single-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:23:\"team_single-370x352.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:23:\"team_single-370x352.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"team_single-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:23:\"team_single-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:23:\"team_single-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:23:\"team_single-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6824,1838,'_wxr_import_parent','278'),(6825,1839,'_wp_attached_file','2019/12/phone.png'),(6826,1839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:17:\"2019/12/phone.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"phone-45x40.png\";s:5:\"width\";i:45;s:6:\"height\";i:40;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:{}}}'),(6828,1840,'_wp_attached_file','2019/12/phone-1.png'),(6829,1840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:19:\"2019/12/phone-1.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"phone-1-45x40.png\";s:5:\"width\";i:45;s:6:\"height\";i:40;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:{}}}'),(6831,1841,'_wp_attached_file','2019/12/mail-1.png'),(6832,1841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:18:\"2019/12/mail-1.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"mail-1-45x40.png\";s:5:\"width\";i:45;s:6:\"height\";i:40;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:{}}}'),(6834,1842,'_wp_attached_file','2019/12/marker.png'),(6835,1842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:45;s:4:\"file\";s:18:\"2019/12/marker.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"marker-32x40.png\";s:5:\"width\";i:32;s:6:\"height\";i:40;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:{}}}'),(6837,1843,'_wp_attached_file','2019/12/flicker_1.jpg'),(6838,1843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_1.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6839,1844,'_wp_attached_file','2019/12/flicker_2.jpg'),(6840,1844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_2.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6841,1845,'_wp_attached_file','2019/12/flicker_3.jpg'),(6842,1845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_3.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6843,1846,'_wp_attached_file','2019/12/flicker_4.jpg'),(6844,1846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_4.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_4-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6845,1847,'_wp_attached_file','2019/12/flicker_5.jpg'),(6846,1847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_5.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_5-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6847,1848,'_wp_attached_file','2019/12/flicker_6.jpg'),(6848,1848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_6.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_6-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6849,1849,'_wp_attached_file','2019/12/flicker_7.jpg'),(6850,1849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_7.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_7-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6851,331,'_wp_attached_file','2019/12/flicker_8.jpg'),(6852,331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_8.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_8-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_8-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6853,1850,'_wp_attached_file','2019/12/flicker_9.jpg'),(6854,1850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2019/12/flicker_9.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"flicker_9-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"flicker_9-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6855,1851,'_wp_attached_file','2019/12/team_1-1.jpg'),(6856,1851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2019/12/team_1-1.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:20:\"team_1-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:18:\"team_1-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:20:\"team_1-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:18:\"team_1-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:20:\"team_1-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:20:\"team_1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:20:\"team_1-1-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6857,1851,'_wxr_import_parent','296'),(6858,1852,'_wp_attached_file','2019/12/team_2.jpg'),(6859,1852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2019/12/team_2.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_2-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_2-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6860,1852,'_wxr_import_parent','296'),(6861,1853,'_wp_attached_file','2019/12/team_3.jpg'),(6862,1853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2019/12/team_3.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_3-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_3-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_3-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_3-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6863,1853,'_wxr_import_parent','296'),(6864,1854,'_wp_attached_file','2019/12/team_4.jpg'),(6865,1854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2019/12/team_4.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_4-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_4-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_4-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_4-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_4-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6866,1854,'_wxr_import_parent','296'),(6867,1855,'_wp_attached_file','2019/12/team_5.jpg'),(6868,1855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2019/12/team_5.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_5-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_5-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_5-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_5-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_5-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6869,1855,'_wxr_import_parent','296'),(6870,1856,'_wp_attached_file','2019/12/team_6.jpg'),(6871,1856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2019/12/team_6.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_6-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_6-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_6-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_6-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_6-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6872,1856,'_wxr_import_parent','296'),(6873,375,'_wp_attached_file','2019/12/[email protected]'),(6874,375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:86;s:4:\"file\";s:21:\"2019/12/[email protected]\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"[email protected]\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"[email protected]\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6875,376,'_wp_attached_file','2019/12/footer_logo.png'),(6876,376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:127;s:6:\"height\";i:55;s:4:\"file\";s:23:\"2019/12/footer_logo.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"footer_logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"footer_logo-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6877,382,'_wp_attached_file','2019/12/logo.jpg'),(6878,382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:99;s:4:\"file\";s:16:\"2019/12/logo.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:14:\"logo-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:14:\"logo-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6879,384,'_wp_attached_file','2019/12/price_img_icon_1.png'),(6880,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:168;s:4:\"file\";s:28:\"2019/12/price_img_icon_1.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:26:\"price_img_icon_1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:26:\"price_img_icon_1-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6882,1857,'_wp_attached_file','2019/12/price_img_icon_2.png'),(6883,1857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:168;s:4:\"file\";s:28:\"2019/12/price_img_icon_2.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:26:\"price_img_icon_2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:26:\"price_img_icon_2-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6885,386,'_wp_attached_file','2019/12/price_img_icon_3.png'),(6886,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:274;s:6:\"height\";i:168;s:4:\"file\";s:28:\"2019/12/price_img_icon_3.png\";s:5:\"sizes\";a:4:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:28:\"price_img_icon_3-250x168.png\";s:5:\"width\";i:250;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:26:\"price_img_icon_3-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:26:\"price_img_icon_3-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:28:\"price_img_icon_3-248x168.png\";s:5:\"width\";i:248;s:6:\"height\";i:168;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:{}}}'),(6888,416,'_wp_attached_file','2020/01/about_bg_two.png'),(6889,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:471;s:4:\"file\";s:24:\"2020/01/about_bg_two.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x447.png\";s:5:\"width\";i:291;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x465.png\";s:5:\"width\";i:291;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x380.png\";s:5:\"width\";i:291;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x350.png\";s:5:\"width\";i:291;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x300.png\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"about_bg_two-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"about_bg_two-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x400.png\";s:5:\"width\";i:291;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x352.png\";s:5:\"width\";i:291;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x240.png\";s:5:\"width\";i:291;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x352.png\";s:5:\"width\";i:291;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x352.png\";s:5:\"width\";i:291;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"about_bg_two-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"about_bg_two-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x400.png\";s:5:\"width\";i:291;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x350.png\";s:5:\"width\";i:291;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"about_bg_two-291x317.png\";s:5:\"width\";i:291;s:6:\"height\";i:317;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:{}}}'),(6891,417,'_wp_attached_file','2020/01/about_bg_one.png'),(6892,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:398;s:6:\"height\";i:528;s:4:\"file\";s:24:\"2020/01/about_bg_one.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x447.png\";s:5:\"width\";i:398;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x465.png\";s:5:\"width\";i:398;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"about_bg_one-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"about_bg_one-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"about_bg_one-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"about_bg_one-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"about_bg_one-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x400.png\";s:5:\"width\";i:398;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x470.png\";s:5:\"width\";i:398;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x352.png\";s:5:\"width\";i:398;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"about_bg_one-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x352.png\";s:5:\"width\";i:398;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"about_bg_one-398x352.png\";s:5:\"width\";i:398;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"about_bg_one-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"about_bg_one-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"about_bg_one-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"about_bg_one-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"about_bg_one-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6894,434,'_wp_attached_file','2020/01/mamphis_four.png'),(6895,434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:138;s:6:\"height\";i:129;s:4:\"file\";s:24:\"2020/01/mamphis_four.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"mamphis_four-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"mamphis_four-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6897,436,'_wp_attached_file','2020/01/mamphis_three.png'),(6898,436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:212;s:4:\"file\";s:25:\"2020/01/mamphis_three.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:23:\"mamphis_three-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:23:\"mamphis_three-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6900,444,'_wp_attached_file','2020/01/project-08.jpg'),(6901,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:275;s:4:\"file\";s:22:\"2020/01/project-08.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"project-08-380x275.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:22:\"project-08-370x275.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"project-08-370x275.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"project-08-250x275.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"project-08-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"project-08-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:22:\"project-08-410x275.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"project-08-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"project-08-248x275.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:22:\"project-08-370x275.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:22:\"project-08-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"project-08-355x275.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:275;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:{}}}'),(6902,1858,'_wp_attached_file','2020/01/clients_01.png'),(6903,1858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:70;s:4:\"file\";s:22:\"2020/01/clients_01.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_01-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_01-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6905,461,'_wp_attached_file','2020/01/clients_02.png'),(6906,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:70;s:4:\"file\";s:22:\"2020/01/clients_02.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_02-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_02-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6908,462,'_wp_attached_file','2020/01/clients_03.png'),(6909,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:153;s:6:\"height\";i:70;s:4:\"file\";s:22:\"2020/01/clients_03.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_03-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_03-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6911,463,'_wp_attached_file','2020/01/clients_04.png'),(6912,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:154;s:6:\"height\";i:70;s:4:\"file\";s:22:\"2020/01/clients_04.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_04-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_04-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6914,466,'_wp_attached_file','2020/01/ring.png'),(6915,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2020/01/ring.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:14:\"ring-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:14:\"ring-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6917,483,'_wp_attached_file','2020/01/p_icon1.png'),(6918,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:75;s:4:\"file\";s:19:\"2020/01/p_icon1.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"p_icon1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"p_icon1-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6920,484,'_wp_attached_file','2020/01/p_icon2.png'),(6921,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:75;s:4:\"file\";s:19:\"2020/01/p_icon2.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"p_icon2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"p_icon2-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6923,485,'_wp_attached_file','2020/01/p_icon3.png'),(6924,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:75;s:4:\"file\";s:19:\"2020/01/p_icon3.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"p_icon3-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"p_icon3-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6926,486,'_wp_attached_file','2020/01/p_icon4.png'),(6927,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:75;s:4:\"file\";s:19:\"2020/01/p_icon4.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"p_icon4-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"p_icon4-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6929,490,'_wp_attached_file','2020/01/email.png'),(6930,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:47;s:4:\"file\";s:17:\"2020/01/email.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"email-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6932,491,'_wp_attached_file','2020/01/phone.png'),(6933,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:51;s:6:\"height\";i:51;s:4:\"file\";s:17:\"2020/01/phone.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"phone-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6935,492,'_wp_attached_file','2020/01/place.png'),(6936,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:36;s:6:\"height\";i:50;s:4:\"file\";s:17:\"2020/01/place.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"place-36x40.png\";s:5:\"width\";i:36;s:6:\"height\";i:40;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:{}}}'),(6938,498,'_wp_attached_file','2019/12/blog_banner_img_two.jpg'),(6939,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:650;s:4:\"file\";s:31:\"2019/12/blog_banner_img_two.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-768x260.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:29:\"blog_banner_img_two-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two-1536x520.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:29:\"blog_banner_img_two-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:31:\"blog_banner_img_two-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6941,502,'_wp_attached_file','2020/01/page_banner.jpg'),(6942,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:450;s:4:\"file\";s:23:\"2020/01/page_banner.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"page_banner-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"page_banner-1170x450.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"page_banner-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"page_banner-768x180.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:23:\"page_banner-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:23:\"page_banner-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:23:\"page_banner-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"page_banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"page_banner-1536x360.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:23:\"page_banner-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:23:\"page_banner-840x450.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:23:\"page_banner-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:23:\"page_banner-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:23:\"page_banner-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:23:\"page_banner-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"page_banner-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:23:\"page_banner-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:23:\"page_banner-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:23:\"page_banner-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:23:\"page_banner-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6943,1859,'_wp_attached_file','2020/01/portfolio_bg.png'),(6944,1859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1163;s:4:\"file\";s:24:\"2020/01/portfolio_bg.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"portfolio_bg-1170x465.png\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-768x465.png\";s:5:\"width\";i:768;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"portfolio_bg-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"portfolio_bg-1536x930.png\";s:5:\"width\";i:1536;s:6:\"height\";i:930;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-970x400.png\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"portfolio_bg-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"portfolio_bg-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6946,1860,'_wp_attached_file','2020/01/footer_logo.png'),(6947,1860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:82;s:6:\"height\";i:40;s:4:\"file\";s:23:\"2020/01/footer_logo.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"footer_logo-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"footer_logo-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6949,1861,'_wp_attached_file','2020/01/banner.jpg'),(6950,1861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:770;s:4:\"file\";s:18:\"2020/01/banner.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"banner-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"banner-768x308.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:18:\"banner-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:18:\"banner-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"banner-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"banner-1536x616.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:18:\"banner-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:18:\"banner-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"banner-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:18:\"banner-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:18:\"banner-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"banner-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"banner-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:18:\"banner-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"banner-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"banner-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6952,1862,'_wp_attached_file','2020/01/we_do_bg.png'),(6953,1862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:950;s:6:\"height\";i:582;s:4:\"file\";s:20:\"2020/01/we_do_bg.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"we_do_bg-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"we_do_bg-950x465.png\";s:5:\"width\";i:950;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"we_do_bg-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"we_do_bg-768x471.png\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:20:\"we_do_bg-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:20:\"we_do_bg-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:20:\"we_do_bg-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:18:\"we_do_bg-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:20:\"we_do_bg-950x400.png\";s:5:\"width\";i:950;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:20:\"we_do_bg-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:20:\"we_do_bg-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:20:\"we_do_bg-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:20:\"we_do_bg-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:20:\"we_do_bg-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:18:\"we_do_bg-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:20:\"we_do_bg-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:20:\"we_do_bg-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:20:\"we_do_bg-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:20:\"we_do_bg-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6955,1863,'_wp_attached_file','2020/01/icon1.png'),(6956,1863,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:37;s:6:\"height\";i:50;s:4:\"file\";s:17:\"2020/01/icon1.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"icon1-37x40.png\";s:5:\"width\";i:37;s:6:\"height\";i:40;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:{}}}'),(6958,1864,'_wp_attached_file','2020/01/icon2.png'),(6959,1864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:42;s:6:\"height\";i:50;s:4:\"file\";s:17:\"2020/01/icon2.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"icon2-42x40.png\";s:5:\"width\";i:42;s:6:\"height\";i:40;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:{}}}'),(6961,1865,'_wp_attached_file','2020/01/icon3.png'),(6962,1865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:17:\"2020/01/icon3.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"icon3-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6964,1866,'_wp_attached_file','2020/01/icon4.png'),(6965,1866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:17:\"2020/01/icon4.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"icon4-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6967,1867,'_wp_attached_file','2020/01/round.png'),(6968,1867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:209;s:6:\"height\";i:397;s:4:\"file\";s:17:\"2020/01/round.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"round-209x380.png\";s:5:\"width\";i:209;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"round-209x350.png\";s:5:\"width\";i:209;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"round-209x300.png\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"round-209x280.png\";s:5:\"width\";i:209;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"round-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"round-209x352.png\";s:5:\"width\";i:209;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"round-209x240.png\";s:5:\"width\";i:209;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"round-209x352.png\";s:5:\"width\";i:209;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"round-209x352.png\";s:5:\"width\";i:209;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"round-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"round-209x278.png\";s:5:\"width\";i:209;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"round-209x350.png\";s:5:\"width\";i:209;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"round-209x317.png\";s:5:\"width\";i:209;s:6:\"height\";i:317;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:{}}}'),(6970,1868,'_wp_attached_file','2020/01/video_bg.jpg'),(6971,1868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1480;s:6:\"height\";i:987;s:4:\"file\";s:20:\"2020/01/video_bg.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"video_bg-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"video_bg-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"video_bg-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"video_bg-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:20:\"video_bg-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:20:\"video_bg-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:20:\"video_bg-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:18:\"video_bg-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:20:\"video_bg-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:20:\"video_bg-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:20:\"video_bg-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:20:\"video_bg-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:20:\"video_bg-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:20:\"video_bg-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:18:\"video_bg-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:20:\"video_bg-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:20:\"video_bg-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:20:\"video_bg-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:20:\"video_bg-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6973,1869,'_wp_attached_file','2020/01/logo.png'),(6974,1869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:82;s:6:\"height\";i:40;s:4:\"file\";s:16:\"2020/01/logo.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:14:\"logo-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:14:\"logo-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6976,602,'_wp_attached_file','2020/01/logo-page.png'),(6977,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:82;s:6:\"height\";i:40;s:4:\"file\";s:21:\"2020/01/logo-page.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"logo-page-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"logo-page-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6979,628,'_wp_attached_file','2019/12/service_details.jpg'),(6980,628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:375;s:4:\"file\";s:27:\"2019/12/service_details.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service_details-380x375.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:27:\"service_details-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:27:\"service_details-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:27:\"service_details-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:25:\"service_details-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:27:\"service_details-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:27:\"service_details-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:27:\"service_details-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:27:\"service_details-670x352.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:25:\"service_details-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:27:\"service_details-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:27:\"service_details-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:27:\"service_details-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:27:\"service_details-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6981,628,'_wxr_import_parent','222'),(6982,677,'_wp_attached_file','2020/01/team_5.jpg'),(6983,677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2020/01/team_5.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"team_5-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_5-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_5-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_5-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"team_5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"team_5-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(6984,677,'_wxr_import_parent','669'),(6985,683,'_wp_attached_file','2019/12/pr_details_1-1.jpg'),(6986,683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:26:\"2019/12/pr_details_1-1.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:24:\"pr_details_1-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:24:\"pr_details_1-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:26:\"pr_details_1-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6988,685,'_wp_attached_file','2019/12/pr_details2.jpg'),(6989,685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:375;s:4:\"file\";s:23:\"2019/12/pr_details2.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"pr_details2-380x375.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:23:\"pr_details2-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:23:\"pr_details2-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:23:\"pr_details2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"pr_details2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:23:\"pr_details2-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:23:\"pr_details2-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:23:\"pr_details2-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:23:\"pr_details2-670x352.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"pr_details2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:23:\"pr_details2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:23:\"pr_details2-370x375.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:23:\"pr_details2-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:23:\"pr_details2-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6991,732,'_wp_attached_file','2020/01/clients_img.jpg');
INSERT INTO `wp_postmeta` VALUES (6992,732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:243;s:6:\"height\";i:244;s:4:\"file\";s:23:\"2020/01/clients_img.jpg\";s:5:\"sizes\";a:3:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"clients_img-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:23:\"clients_img-243x240.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"clients_img-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(6994,777,'_wp_attached_file','2020/01/slider-1.jpg'),(6995,777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1102;s:4:\"file\";s:20:\"2020/01/slider-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider-1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider-1-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slider-1-768x441.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:20:\"slider-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:20:\"slider-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:20:\"slider-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:18:\"slider-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"slider-1-1536x882.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:882;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-1-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:20:\"slider-1-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:20:\"slider-1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:20:\"slider-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:20:\"slider-1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:20:\"slider-1-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:18:\"slider-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:20:\"slider-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:20:\"slider-1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:20:\"slider-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:20:\"slider-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(6997,778,'_wp_attached_file','2020/01/slider-2.jpg'),(6998,778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1102;s:4:\"file\";s:20:\"2020/01/slider-2.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider-2-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider-2-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slider-2-768x441.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:20:\"slider-2-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:20:\"slider-2-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:20:\"slider-2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:18:\"slider-2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"slider-2-1536x882.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:882;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-2-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:20:\"slider-2-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:20:\"slider-2-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:20:\"slider-2-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:20:\"slider-2-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:20:\"slider-2-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:18:\"slider-2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:20:\"slider-2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:20:\"slider-2-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:20:\"slider-2-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:20:\"slider-2-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7000,802,'_wp_attached_file','2020/01/ex_one.jpg'),(7001,802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:290;s:6:\"height\";i:395;s:4:\"file\";s:18:\"2020/01/ex_one.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ex_one-290x380.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:18:\"ex_one-290x350.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:18:\"ex_one-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"ex_one-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"ex_one-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:18:\"ex_one-290x352.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"ex_one-290x240.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:18:\"ex_one-290x352.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:18:\"ex_one-290x352.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"ex_one-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"ex_one-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"ex_one-290x350.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"ex_one-290x317.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:317;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:{}}}'),(7003,803,'_wp_attached_file','2020/01/ex_two.jpg'),(7004,803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:290;s:6:\"height\";i:395;s:4:\"file\";s:18:\"2020/01/ex_two.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ex_two-290x380.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:18:\"ex_two-290x350.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:18:\"ex_two-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"ex_two-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"ex_two-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:18:\"ex_two-290x352.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"ex_two-290x240.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:18:\"ex_two-290x352.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:18:\"ex_two-290x352.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"ex_two-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"ex_two-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"ex_two-290x350.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"ex_two-290x317.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:317;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:{}}}'),(7006,806,'_wp_attached_file','2020/01/dot_ex.png'),(7007,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:227;s:4:\"file\";s:18:\"2020/01/dot_ex.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"dot_ex-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"dot_ex-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7009,819,'_wp_attached_file','2020/01/round-1.png'),(7010,819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:19:\"2020/01/round-1.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"round-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"round-1-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7012,820,'_wp_attached_file','2020/01/triangle.png'),(7013,820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:137;s:4:\"file\";s:20:\"2020/01/triangle.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:18:\"triangle-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:18:\"triangle-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7015,826,'_wp_attached_file','2020/01/question_img.png'),(7016,826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:613;s:6:\"height\";i:366;s:4:\"file\";s:24:\"2020/01/question_img.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"question_img-380x366.png\";s:5:\"width\";i:380;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"question_img-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"question_img-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"question_img-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"question_img-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"question_img-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"question_img-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"question_img-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"question_img-613x352.png\";s:5:\"width\";i:613;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"question_img-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"question_img-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"question_img-370x366.png\";s:5:\"width\";i:370;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"question_img-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"question_img-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7018,834,'_wp_attached_file','2020/01/circle_round.png'),(7019,834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:668;s:6:\"height\";i:671;s:4:\"file\";s:24:\"2020/01/circle_round.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"circle_round-668x447.png\";s:5:\"width\";i:668;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"circle_round-668x465.png\";s:5:\"width\";i:668;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"circle_round-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"circle_round-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"circle_round-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"circle_round-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"circle_round-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"circle_round-668x400.png\";s:5:\"width\";i:668;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:24:\"circle_round-668x470.png\";s:5:\"width\";i:668;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"circle_round-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"circle_round-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"circle_round-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"circle_round-668x352.png\";s:5:\"width\";i:668;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"circle_round-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"circle_round-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"circle_round-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"circle_round-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"circle_round-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7021,839,'_wp_attached_file','2020/01/testimonial_bg.jpg'),(7022,839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1059;s:4:\"file\";s:26:\"2020/01/testimonial_bg.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"testimonial_bg-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-768x424.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:424;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:24:\"testimonial_bg-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"testimonial_bg-1536x847.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:847;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:24:\"testimonial_bg-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:26:\"testimonial_bg-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7024,844,'_wp_attached_file','2020/01/icon.png'),(7025,844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:40;s:4:\"file\";s:16:\"2020/01/icon.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:{}}}'),(7027,857,'_wp_attached_file','2020/01/tips_img1.jpg'),(7028,857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:671;s:6:\"height\";i:545;s:4:\"file\";s:21:\"2020/01/tips_img1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"tips_img1-671x447.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"tips_img1-671x465.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"tips_img1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:21:\"tips_img1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"tips_img1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"tips_img1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"tips_img1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:21:\"tips_img1-671x400.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:21:\"tips_img1-671x470.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:21:\"tips_img1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"tips_img1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:21:\"tips_img1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:21:\"tips_img1-671x352.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"tips_img1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"tips_img1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:21:\"tips_img1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:21:\"tips_img1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"tips_img1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7030,870,'_wp_attached_file','2020/01/icon1-1.png'),(7031,870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:23;s:6:\"height\";i:26;s:4:\"file\";s:19:\"2020/01/icon1-1.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:{}}}'),(7033,871,'_wp_attached_file','2020/01/icon2-1.png'),(7034,871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:25;s:6:\"height\";i:25;s:4:\"file\";s:19:\"2020/01/icon2-1.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:{}}}'),(7036,872,'_wp_attached_file','2020/01/icon3-1.png'),(7037,872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:27;s:6:\"height\";i:27;s:4:\"file\";s:19:\"2020/01/icon3-1.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:{}}}'),(7039,873,'_wp_attached_file','2020/01/icon4-1.png'),(7040,873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:25;s:6:\"height\";i:27;s:4:\"file\";s:19:\"2020/01/icon4-1.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:{}}}'),(7042,876,'_wp_attached_file','2020/01/icon-1.png'),(7043,876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:40;s:4:\"file\";s:18:\"2020/01/icon-1.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:{}}}'),(7045,902,'_wp_attached_file','2020/01/woocommerce-placeholder.png'),(7046,902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2020/01/woocommerce-placeholder.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1170x465.png\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-970x400.png\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7047,909,'_wp_attached_file','2020/01/product_1.jpg'),(7048,909,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_1.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_1-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_1-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_1-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7049,910,'_wp_attached_file','2020/01/product_2.jpg'),(7050,910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_2.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_2-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_2-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_2-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7051,911,'_wp_attached_file','2020/01/product_3.jpg'),(7052,911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_3.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_3-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_3-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_3-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_3-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_3-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7053,912,'_wp_attached_file','2020/01/product_4.jpg'),(7054,912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_4.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_4-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_4-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_4-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_4-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_4-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_4-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7055,913,'_wp_attached_file','2020/01/product_5.jpg'),(7056,913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_5.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_5-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_5-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_5-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_5-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_5-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_5-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7057,914,'_wp_attached_file','2020/01/product_6.jpg'),(7058,914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_6.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_6-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_6-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_6-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_6-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_6-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_6-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7059,915,'_wp_attached_file','2020/01/product_7.jpg'),(7060,915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_7.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_7-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_7-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_7-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_7-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_7-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_7-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7061,916,'_wp_attached_file','2020/01/product_8.jpg'),(7062,916,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_8.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_8-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_8-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_8-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_8-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_8-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_8-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_8-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7063,917,'_wp_attached_file','2020/01/product_9.jpg'),(7064,917,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:21:\"2020/01/product_9.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:21:\"product_9-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:21:\"product_9-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"product_9-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"product_9-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"product_9-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:21:\"product_9-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:21:\"product_9-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7065,918,'_wp_attached_file','2020/01/product_10.jpg'),(7066,918,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:22:\"2020/01/product_10.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"product_10-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"product_10-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"product_10-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"product_10-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"product_10-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"product_10-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"product_10-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7067,919,'_wp_attached_file','2020/01/product_11.jpg'),(7068,919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:22:\"2020/01/product_11.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"product_11-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"product_11-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"product_11-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"product_11-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"product_11-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"product_11-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"product_11-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7069,920,'_wp_attached_file','2020/01/product_12.jpg'),(7070,920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:320;s:4:\"file\";s:22:\"2020/01/product_12.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:22:\"product_12-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:22:\"product_12-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"product_12-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:22:\"product_12-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"product_12-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:22:\"product_12-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:22:\"product_12-270x317.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:317;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:{}}}'),(7071,924,'_wp_attached_file','2020/01/product_img_n.jpg'),(7072,924,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:440;s:4:\"file\";s:25:\"2020/01/product_img_n.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x380.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:25:\"product_img_n-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:23:\"product_img_n-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x352.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x352.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x352.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:23:\"product_img_n-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:25:\"product_img_n-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:25:\"product_img_n-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:25:\"product_img_n-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:25:\"product_img_n-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7073,936,'_wp_attached_file','2020/02/clients_3.jpg'),(7074,936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:243;s:6:\"height\";i:244;s:4:\"file\";s:21:\"2020/02/clients_3.jpg\";s:5:\"sizes\";a:3:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:19:\"clients_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:21:\"clients_3-243x240.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:19:\"clients_3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7076,937,'_wp_attached_file','2020/02/clients_img2.jpg'),(7077,937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:243;s:6:\"height\";i:244;s:4:\"file\";s:24:\"2020/02/clients_img2.jpg\";s:5:\"sizes\";a:3:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"clients_img2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"clients_img2-243x240.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"clients_img2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7079,959,'_wp_attached_file','2020/01/cap-5.png'),(7080,959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:83;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2020/01/cap-5.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"cap-5-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"cap-5-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7082,960,'_wp_attached_file','2020/01/cap-6.png'),(7083,960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:74;s:4:\"file\";s:17:\"2020/01/cap-6.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"cap-6-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"cap-6-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7085,961,'_wp_attached_file','2020/01/cap-4.png'),(7086,961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:69;s:4:\"file\";s:17:\"2020/01/cap-4.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"cap-4-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"cap-4-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7088,962,'_wp_attached_file','2020/01/cap-3.png'),(7089,962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2020/01/cap-3.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"cap-3-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"cap-3-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7091,963,'_wp_attached_file','2020/01/cap-2.png'),(7092,963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:79;s:6:\"height\";i:79;s:4:\"file\";s:17:\"2020/01/cap-2.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"cap-2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"cap-2-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7094,964,'_wp_attached_file','2020/01/cap-1.png'),(7095,964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:83;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2020/01/cap-1.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"cap-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"cap-1-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7097,971,'_wp_attached_file','2020/02/clients_01.png'),(7098,971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:37;s:4:\"file\";s:22:\"2020/02/clients_01.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_01-50x37.png\";s:5:\"width\";i:50;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_01-50x37.png\";s:5:\"width\";i:50;s:6:\"height\";i:37;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:{}}}'),(7100,972,'_wp_attached_file','2020/02/clients_02.png'),(7101,972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:46;s:4:\"file\";s:22:\"2020/02/clients_02.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_02-50x46.png\";s:5:\"width\";i:50;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_02-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7103,973,'_wp_attached_file','2020/02/clients_03.png'),(7104,973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:34;s:4:\"file\";s:22:\"2020/02/clients_03.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_03-50x34.png\";s:5:\"width\";i:50;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_03-50x34.png\";s:5:\"width\";i:50;s:6:\"height\";i:34;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:{}}}'),(7106,974,'_wp_attached_file','2020/02/clients_04.png'),(7107,974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:181;s:6:\"height\";i:38;s:4:\"file\";s:22:\"2020/02/clients_04.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_04-50x38.png\";s:5:\"width\";i:50;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_04-50x38.png\";s:5:\"width\";i:50;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:{}}}'),(7109,975,'_wp_attached_file','2020/02/clients_05.png'),(7110,975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:131;s:6:\"height\";i:26;s:4:\"file\";s:22:\"2020/02/clients_05.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:20:\"clients_05-50x26.png\";s:5:\"width\";i:50;s:6:\"height\";i:26;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:20:\"clients_05-50x26.png\";s:5:\"width\";i:50;s:6:\"height\";i:26;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:{}}}'),(7112,987,'_wp_attached_file','2020/01/pr_details_1.jpg'),(7113,987,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:450;s:4:\"file\";s:24:\"2020/01/pr_details_1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"pr_details_1-440x447.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"pr_details_1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"pr_details_1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"pr_details_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"pr_details_1-440x400.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"pr_details_1-440x352.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"pr_details_1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"pr_details_1-440x352.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"pr_details_1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"pr_details_1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"pr_details_1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"pr_details_1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"pr_details_1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7115,1054,'_wp_attached_file','2020/02/team_7.jpg'),(7116,1054,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:18:\"2020/02/team_7.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_7-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_7-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_7-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(7118,1055,'_wp_attached_file','2020/02/team_8.jpg'),(7119,1055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:18:\"2020/02/team_8.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_8-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_8-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_8-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_8-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(7121,1056,'_wp_attached_file','2020/02/team_9.jpg'),(7122,1056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:18:\"2020/02/team_9.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"team_9-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"team_9-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"team_9-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"team_9-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(7124,1057,'_wp_attached_file','2020/02/team_10.jpg'),(7125,1057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:280;s:4:\"file\";s:19:\"2020/02/team_10.jpg\";s:5:\"sizes\";a:4:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"team_10-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:19:\"team_10-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"team_10-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:19:\"team_10-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;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:{}}}'),(7127,1063,'_wp_attached_file','2020/02/team_single.jpg'),(7128,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2020/02/team_single.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"team_single-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:23:\"team_single-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:23:\"team_single-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:23:\"team_single-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"team_single-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:23:\"team_single-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:23:\"team_single-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:23:\"team_single-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:23:\"team_single-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"team_single-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:23:\"team_single-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:23:\"team_single-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:23:\"team_single-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:23:\"team_single-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7130,1069,'_wp_attached_file','2020/02/team-details.png'),(7131,1069,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2020/02/team-details.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"team-details-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"team-details-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"team-details-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"team-details-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"team-details-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"team-details-440x352.png\";s:5:\"width\";i:440;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"team-details-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"team-details-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"team-details-440x352.png\";s:5:\"width\";i:440;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"team-details-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"team-details-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"team-details-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"team-details-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"team-details-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7133,1110,'_wp_attached_file','2020/02/1.jpg'),(7134,1110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/1.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"1-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7136,1111,'_wp_attached_file','2020/02/2.jpg'),(7137,1111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/2.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"2-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"2-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7139,1112,'_wp_attached_file','2020/02/3.jpg'),(7140,1112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/3.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"3-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"3-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"3-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"3-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7142,1113,'_wp_attached_file','2020/02/4.jpg'),(7143,1113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/4.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"4-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"4-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"4-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"4-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"4-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7145,1114,'_wp_attached_file','2020/02/5.jpg'),(7146,1114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/5.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"5-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"5-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"5-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"5-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"5-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7148,1115,'_wp_attached_file','2020/02/6.jpg'),(7149,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/6.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"6-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"6-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"6-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"6-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"6-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7151,1116,'_wp_attached_file','2020/02/7.jpg'),(7152,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/7.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"7-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"7-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"7-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"7-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"7-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7154,1870,'_elementor_edit_mode','builder'),(7155,1870,'_elementor_template_type','section'),(7156,1870,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:6;}}}}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:3:{s:3:\"gap\";i:4;s:13:\"content_width\";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:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:8:\"position\";i:6;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:6;s:10:\"image_size\";i:6;}s:21:\"section_style_content\";a:13:{s:18:\"title_bottom_space\";i:6;s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:17:\"description_color\";i:6;s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:34:\"description_typography_line_height\";i:6;}}}}}'),(7157,1870,'_elementor_version','2.7.5'),(7158,1870,'_elementor_data','[{\"id\":\"41e1a5d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service-patterns.jpg\",\"id\":50},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f13f172\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"54812e5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"e3db0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4f2b259\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT COMPANY PROVIDE\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.98,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50f3ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company Services\\n\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46d96de\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"aa090b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.1},\"elements\":[{\"id\":\"cb4886f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/diamond.png\",\"id\":46},\"title_text\":\"Unique Design\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"87e2a03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2},\"elements\":[{\"id\":\"3da681a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/browser.png\",\"id\":45},\"title_text\":\"BRANDING & IDENTITY\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5b30a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.5},\"elements\":[{\"id\":\"f786290\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/settings.png\",\"id\":49},\"title_text\":\"WEB SOLUTIONS\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e4e0623\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ab79b19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.1},\"elements\":[{\"id\":\"650d826\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/bar-chart.png\",\"id\":44},\"title_text\":\"PRODUCT DEVELOPMENT\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"75b4447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.4},\"elements\":[{\"id\":\"1697740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/profits.png\",\"id\":47},\"title_text\":\"PRODUCT MARKETING\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"be7e6bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.6},\"elements\":[{\"id\":\"5c4dade\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/sales.png\",\"id\":48},\"title_text\":\"ADD DEVELOPMENT\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"693c0f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":-46.5,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7160,1871,'_elementor_edit_mode','builder'),(7161,1871,'_elementor_template_type','section'),(7162,1871,'_elementor_controls_usage','a:2:{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:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}}'),(7163,1871,'_elementor_version','2.7.5'),(7164,1871,'_elementor_data','[{\"id\":\"6391de30\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f5dcd35\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7165,990,'_elementor_edit_mode','builder'),(7166,990,'_elementor_template_type','section'),(7167,990,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;}}}}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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(7168,990,'_elementor_version','2.8.3'),(7169,990,'_wp_page_template','default'),(7170,990,'_elementor_data','[{\"id\":\"10191bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]}},\"elements\":[{\"id\":\"6fd99a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.833},\"elements\":[{\"id\":\"2dff5f42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"509d5d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167},\"elements\":[{\"id\":\"6588398f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25cc6f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f652f33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Top 100 digital art design\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3db706\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e946a02\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f5a2144\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d28e680\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d4612a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6d11a30c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5d25f566\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46cf484b\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"71e0fc5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"18fe38cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cee7358\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"517f2dc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5339779a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7599eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"89f778e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>t cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7649e2c0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social\":\"fa fa-envelope\",\"_id\":\"b165c7f\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(7172,1872,'_elementor_edit_mode','builder'),(7173,1872,'_elementor_template_type','section'),(7174,1872,'_elementor_controls_usage','a:3:{s:14:\"zix-statistics\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:18:\"statistics_section\";a:1:{s:5:\"title\";i:1;}s:8:\"desc_sec\";a:1:{s:11:\"description\";i:1;}s:19:\"count_item_repeater\";a:1:{s:12:\"stat_counter\";i:1;}s:12:\"shape_images\";a:1:{s:7:\"shape_1\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:32:\"statistics_background_background\";i:1;s:27:\"statistics_background_image\";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:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}}'),(7175,1872,'_elementor_version','2.8.3'),(7176,1872,'_elementor_data','[{\"id\":\"76bebe14\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"aa56e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2c773a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Agency For <br> your Business\",\"description\":\"Nullam bibendum odio a sem bibendum, ut vestibulum ipsum porttitor nec orci et cursus. Vestibulum facilisis rhoncus tempor. Duis non ipsui nec orci et cursus. Vestibulum facilisis rhoncus tempor.\",\"stat_counter\":[{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon1.png\",\"id\":552},\"font_icon\":\"\",\"count_number\":1600,\"counter_title\":\"Process Projects\",\"_id\":\"48a1463\"},{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon2.png\",\"id\":553},\"font_icon\":\"\",\"count_number\":1000,\"counter_title\":\"Awards Winner\",\"_id\":\"ba44362\"},{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon3.png\",\"id\":554},\"font_icon\":\"\",\"count_number\":1500,\"counter_title\":\"Complete Projects\",\"_id\":\"0346be0\"},{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon4.png\",\"id\":555},\"font_icon\":\"\",\"count_number\":1000,\"counter_title\":\"Successful Projects\",\"_id\":\"7916b58\"}],\"statistics_background_background\":\"classic\",\"statistics_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/we_do_bg.png\",\"id\":551},\"shape_1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-statistics\"}],\"isInner\":false}],\"isInner\":false}]'),(7178,1873,'_elementor_edit_mode','builder'),(7179,1873,'_elementor_template_type','section'),(7180,1873,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";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:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:6:\"layout\";i:2;}}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:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(7181,1873,'_elementor_version','2.8.3'),(7182,1873,'_wp_page_template','default'),(7183,1873,'_elementor_data','[{\"id\":\"249a3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d24c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"61d62418\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"5d42dfbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"7053d540\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"109e5c64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308ae11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"545678d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db38cab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39a7fef2\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7185,1038,'_elementor_edit_mode','builder'),(7186,1038,'_elementor_template_type','section'),(7187,1038,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:13:\"margin_mobile\";i:5;s:6:\"margin\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}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:1:{s:7:\"padding\";i:1;}}}}}'),(7188,1038,'_elementor_version','2.8.3'),(7189,1038,'_wp_page_template','default'),(7190,1038,'_elementor_data','[{\"id\":\"21778acd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"334c26b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c49ebfc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"79b7562d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"205cf6a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a1a7595\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1df10e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6707f57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7e0f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18c78bde\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"c76e64b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7192,1042,'_elementor_edit_mode','builder'),(7193,1042,'_elementor_template_type','section'),(7194,1042,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:10:\"image_size\";i:2;}}}}s:7:\"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:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;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:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(7195,1042,'_elementor_version','2.8.3'),(7196,1042,'_wp_page_template','default'),(7197,1042,'_elementor_data','[{\"id\":\"e5d4d7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b2d60d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.333,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"510f9587\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5098195e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4daafa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-6.png\",\"id\":960},\"align\":\"left\",\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6945594c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADD DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25e0183b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"45a4b838\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.364,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19fecc08\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"41dca6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.602},\"elements\":[{\"id\":\"7d780b06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>John Clark<\\/li><li>2 Working Days<\\/li><li>$220<\\/li><li>High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5146e811\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.332,\"space_between_widgets\":0},\"elements\":[{\"id\":\"41eec9ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7874ae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7199,1117,'_wp_attached_file','2020/02/8.jpg'),(7200,1117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/8.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"8-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"8-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"8-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"8-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"8-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"8-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7202,1118,'_wp_attached_file','2020/02/9.jpg'),(7203,1118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2020/02/9.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:13:\"9-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:11:\"9-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:13:\"9-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:11:\"9-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:13:\"9-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:13:\"9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:13:\"9-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7205,1119,'_wp_attached_file','2020/02/10.jpg'),(7206,1119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:14:\"2020/02/10.jpg\";s:5:\"sizes\";a:7:{s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:14:\"10-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:12:\"10-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:14:\"10-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:12:\"10-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:14:\"10-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:14:\"10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:14:\"10-355x300.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:300;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:{}}}'),(7208,1165,'_elementor_edit_mode','builder'),(7209,1165,'_elementor_template_type','section'),(7210,1165,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:7:\"opacity\";i:5;s:22:\"css_filters_css_filter\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:5;s:27:\"background_hover_background\";i:5;s:27:\"background_hover_transition\";i:5;}s:26:\"section_background_overlay\";a:2:{s:32:\"background_overlay_hover_opacity\";i:5;s:26:\"background_overlay_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:13:\"margin_mobile\";i:5;s:6:\"margin\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}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:1:{s:7:\"padding\";i:1;}}}}}'),(7211,1165,'_elementor_version','2.8.3'),(7212,1165,'_elementor_data','[{\"id\":\"233a7769\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"366ced3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1d9502cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5de8c0b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7802e6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7ebd3ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"59dfc154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a208124\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"69b69782\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ec00879\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4218b6f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7214,1207,'_wp_attached_file','2019/12/blog_banner_img_two_.jpg'),(7215,1207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1911;s:6:\"height\";i:637;s:4:\"file\";s:32:\"2019/12/blog_banner_img_two_.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"blog_banner_img_two_-1170x465.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:30:\"blog_banner_img_two_-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"blog_banner_img_two_-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:30:\"blog_banner_img_two_-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:32:\"blog_banner_img_two_-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7217,1213,'_wp_attached_file','2020/02/img_4.jpg'),(7218,1213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:475;s:4:\"file\";s:17:\"2020/02/img_4.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img_4-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"img_4-840x465.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img_4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img_4-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"img_4-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"img_4-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"img_4-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"img_4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:17:\"img_4-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:17:\"img_4-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"img_4-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"img_4-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"img_4-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"img_4-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"img_4-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"img_4-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"img_4-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"img_4-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"img_4-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7220,1214,'_wp_attached_file','2020/02/img_3.jpg'),(7221,1214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:475;s:4:\"file\";s:17:\"2020/02/img_3.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img_3-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"img_3-840x465.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img_3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img_3-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"img_3-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"img_3-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"img_3-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"img_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:17:\"img_3-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:17:\"img_3-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"img_3-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"img_3-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"img_3-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"img_3-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"img_3-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"img_3-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"img_3-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"img_3-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"img_3-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7223,1215,'_wp_attached_file','2020/02/img_2.jpg'),(7224,1215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:475;s:4:\"file\";s:17:\"2020/02/img_2.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img_2-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"img_2-840x465.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img_2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img_2-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"img_2-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"img_2-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"img_2-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"img_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:17:\"img_2-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:17:\"img_2-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"img_2-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"img_2-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"img_2-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"img_2-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"img_2-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"img_2-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"img_2-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"img_2-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"img_2-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7226,1216,'_wp_attached_file','2020/02/img_1.jpg'),(7227,1216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:475;s:4:\"file\";s:17:\"2020/02/img_1.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img_1-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"img_1-840x465.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img_1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img_1-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:17:\"img_1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:17:\"img_1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:17:\"img_1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:15:\"img_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:17:\"img_1-840x400.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:17:\"img_1-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:17:\"img_1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:17:\"img_1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:17:\"img_1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:17:\"img_1-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:15:\"img_1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:17:\"img_1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:17:\"img_1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:17:\"img_1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:17:\"img_1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7229,1283,'_wp_attached_file','2020/02/sticky-logo-2x.png'),(7230,1283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:78;s:4:\"file\";s:26:\"2020/02/sticky-logo-2x.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:24:\"sticky-logo-2x-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:24:\"sticky-logo-2x-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7232,1874,'_wp_attached_file','2020/02/[email protected]'),(7233,1874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:167;s:6:\"height\";i:78;s:4:\"file\";s:19:\"2020/02/[email protected]\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:17:\"[email protected]\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"[email protected]\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(7235,1497,'_wp_attached_file','2020/03/Vector-Smart-Object.jpg'),(7236,1497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:450;s:4:\"file\";s:31:\"2020/03/Vector-Smart-Object.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Vector-Smart-Object-1170x450.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-768x180.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:29:\"Vector-Smart-Object-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Vector-Smart-Object-1536x360.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-970x400.jpg\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-840x450.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:29:\"Vector-Smart-Object-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:31:\"Vector-Smart-Object-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(7238,1557,'_wp_attached_file','2020/04/favicon.png'),(7239,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:35;s:6:\"height\";i:44;s:4:\"file\";s:19:\"2020/04/favicon.png\";s:5:\"sizes\";a:1:{s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:17:\"favicon-35x40.png\";s:5:\"width\";i:35;s:6:\"height\";i:40;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:{}}}'),(7340,643,'_elementor_edit_mode','builder'),(7341,643,'_elementor_template_type','wp-post'),(7342,643,'_elementor_version','2.8.3'),(7343,643,'post_views_count','0'),(7344,643,'_wp_page_template','elementor_canvas'),(7345,643,'_elementor_data','[{\"id\":\"2038a16\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#130F38\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fc7bb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e229327\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4e1f2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":5},\"elements\":[{\"id\":\"58074a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/footer_logo.png\",\"id\":535},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3071b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit consectete eget orci dictum facili tellusLor or sit amet, consectetur Lorem sumi dictum facili tell us<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a17b2b9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"948ce69\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01abb8\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"fe532bb\",\"link\":{\"url\":\"https:\\/\\/youtube.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"a2dae3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"425eb5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e39273\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our Services\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"3bf5cc7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Portfolio Page\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"1e6326c\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"92ca6de\"},{\"text\":\"Pricing Plans\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"aa5b584\"},{\"text\":\"Contact us\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2e0fef6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#FC7C2C\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Muli\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f7c20da\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d27510\",\"elType\":\"widget\",\"settings\":{\"title\":\"Useful Links\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7277313\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our Product\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"3bf5cc7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Documentation\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"1e6326c\"},{\"text\":\"Service Details\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"92ca6de\"},{\"text\":\"Our Company\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"aa5b584\"},{\"text\":\"What We Do?\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2e0fef6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#FC7C2C\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Muli\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"ba4c7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4d6fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"127a188\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Wave, Via Habro Derennio 22\\/b 52100 Arezzo, Italy\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"c250487\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"[email protected]\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"fad8634\"},{\"text\":\"095 1856 558 (Toll Free)\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"84479af\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#FC7C2C\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e9ee06\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#423F60\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd901ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b82fc63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Zix - Copyright 2020. Design by <span style=\\\"color: #ffffff;\\\"><a style=\\\"color: #ffffff;\\\" href=\\\"https:\\/\\/droitthemes.com\\\">DroitThemes<\\/a><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7346,643,'_elementor_controls_usage','a:7:{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:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;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:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";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:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:15:\"icon_self_align\";i:2;}s:18:\"section_text_style\";a:8:{s:10:\"text_color\";i:3;s:16:\"text_color_hover\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;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:1;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}}'),(7347,643,'_wxr_import_has_attachment_refs','1'),(7348,1297,'_elementor_edit_mode','builder'),(7349,1297,'_elementor_template_type','kit'),(7350,1299,'_elementor_edit_mode','builder'),(7351,1299,'_elementor_template_type','section'),(7352,1299,'_elementor_version','2.9.2'),(7353,1299,'_wp_page_template','default'),(7354,1299,'_elementor_data','[{\"id\":\"1dfdf6e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"62cc516b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ccc6864\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9f05d4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605239bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"164923ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73c1e87f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"23a9a32d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3392ed16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"327ab2c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"338f1c9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7355,1299,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:6:\"margin\";i:5;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:5;}}}}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:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}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:1:{s:7:\"padding\";i:1;}}}}}'),(7357,1302,'_elementor_edit_mode','builder'),(7358,1302,'_elementor_template_type','section'),(7359,1302,'_elementor_version','2.9.2'),(7360,1302,'_wp_page_template','default'),(7361,1302,'_elementor_data','[{\"id\":\"4c5758f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8bf5c2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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\":\"5e5771c3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30b74754\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"451abb28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-6.png\",\"id\":960},\"align\":\"left\",\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a36704f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADD DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e16b703\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b1171f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e9ffacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6b2c708b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"58591037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"714659e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22f8338b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4aa07037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5793e690\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div class=\\\"f_social_icon\\\">\\r\\n <a href=\\\"https:\\/\\/facebook.com\\/sharer\\/sharer.php?u=<?php the_permalink(); ?>\\\"><i class=\\\"social_facebook\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/twitter.com\\/intent\\/tweet?text=<?php the_permalink(); ?>\\\"><i class=\\\"social_twitter\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.pinterest.com\\/pin\\/create\\/button\\/?url=<?php the_permalink() ?>\\\"><i class=\\\"social_pinterest\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.linkedin.com\\/shareArticle?mini=true&url=<?php the_permalink() ?>\\\"><i class=\\\"social_linkedin\\\"><\\/i><\\/a>\\r\\n <\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(7362,1302,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:10:\"image_size\";i:2;}}}}s:7:\"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:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:2;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:2;}}}}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:6:\"layout\";i:1;s:3:\"gap\";i:3;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:3;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";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:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"html\";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_title\";a:1:{s:4:\"html\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(7364,1412,'_elementor_edit_mode','builder'),(7365,1412,'_elementor_template_type','section'),(7366,1412,'_elementor_version','2.9.2'),(7367,1412,'_wp_page_template','default'),(7368,1412,'_elementor_data','[{\"id\":\"1cf26f35\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"716b3dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b02d03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17868b81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"90e2551\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2b227657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"38fa890e\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7923e431\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50a19076\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc8c7e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8e48dcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cf6c5b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"451ce7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f2993bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4114647b\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1b3c75e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"31a6764a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21f52f38\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"297130b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4e44ecea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c864d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3105b2eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d2c2d15\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(7369,1412,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(7371,1441,'_elementor_edit_mode','builder'),(7372,1441,'_elementor_template_type','section'),(7373,1441,'_elementor_version','2.9.2'),(7374,1441,'_wp_page_template','default'),(7375,1441,'_elementor_data','[{\"id\":\"375ea932\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c2b919c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66058220\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0a6c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030ea13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-1.png\",\"id\":964},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5e7294a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DESIGN\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7cb01a02\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c411d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"47929ee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"62c5cb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"48c63d91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de09e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd7fc96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"653cecae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f681241\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div class=\\\"f_social_icon\\\">\\r\\n <a href=\\\"https:\\/\\/facebook.com\\/sharer\\/sharer.php?u=<?php the_permalink(); ?>\\\"><i class=\\\"social_facebook\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/twitter.com\\/intent\\/tweet?text=<?php the_permalink(); ?>\\\"><i class=\\\"social_twitter\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.pinterest.com\\/pin\\/create\\/button\\/?url=<?php the_permalink() ?>\\\"><i class=\\\"social_pinterest\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.linkedin.com\\/shareArticle?mini=true&url=<?php the_permalink() ?>\\\"><i class=\\\"social_linkedin\\\"><\\/i><\\/a>\\r\\n <\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(7376,1441,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:5:\"align\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:7:\"padding\";i:4;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:3;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:2;}}}}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:6:\"layout\";i:1;s:3:\"gap\";i:2;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:3;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";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:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"html\";a: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_title\";a:1:{s:4:\"html\";i:1;}}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_mobile\";i:1;}}}}}'),(7378,1444,'_elementor_edit_mode','builder'),(7379,1444,'_elementor_template_type','section'),(7380,1444,'_elementor_version','2.9.2'),(7381,1444,'_wp_page_template','default'),(7382,1444,'_elementor_data','[{\"id\":\"25fd2120\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30025eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"224ab28a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30b99e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"5cbe2100\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"37952ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"984c2fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5e7cadab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"2e0cba2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b799b74\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"183e14ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7383,1444,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:6:\"margin\";i:5;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:5;}}s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}s:13:\"section_style\";a:2:{s:27:\"background_hover_background\";i:1;s:16:\"background_color\";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:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}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:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7385,1447,'_elementor_edit_mode','builder'),(7386,1447,'_elementor_template_type','section'),(7387,1447,'_elementor_version','2.9.2'),(7388,1447,'_wp_page_template','default'),(7389,1447,'_elementor_data','[{\"id\":\"c0dc930\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fcdb7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"167fdd69\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"fc20fc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"435f7bb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"78d0b38b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b36ba85\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46b50da4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51931f8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d4c979a\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7390,1447,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";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:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:2;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:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(7392,1456,'_elementor_edit_mode','builder'),(7393,1456,'_elementor_template_type','section'),(7394,1456,'_elementor_version','2.9.2'),(7395,1456,'_wp_page_template','default'),(7396,1456,'_elementor_data','[{\"id\":\"47746670\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e59ad11\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"103b106f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4860eb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db97914\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"764f47a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"9bd73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rodney Artichoke\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"359980b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"48e03e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6195a814\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a556914\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d43dc78\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7a9e7f8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c412d49\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7397,1456,'_elementor_controls_usage','a:7:{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:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:13:\"margin_mobile\";i:3;s:14:\"padding_mobile\";i:2;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:13:\"content_width\";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:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}}'),(7827,94,'_elementor_edit_mode','builder'),(7828,94,'_elementor_template_type','wp-post'),(7829,94,'_elementor_version','2.9.2'),(7830,94,'post_views_count','1'),(7831,94,'_wp_page_template','elementor_header_footer'),(7832,94,'_elementor_data','[{\"id\":\"36409407\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"38d37d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4117f402\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20b3527b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2fc7d843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6914f827\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"39bda148\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d5a36c\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63a1aa38\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"710609d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67c090d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"770e6d34\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"414e28a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db01174\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dff6deb\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"59b9c9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e7c13d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22f064b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2d63e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3c1e62b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64be12ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"469d1141\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"775c8a2d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(7833,94,'_dp_original','93'),(7834,94,'_thumbnail_id','107'),(7835,94,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:5;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(7836,94,'_wxr_import_has_attachment_refs','1'),(8282,1894,'_elementor_edit_mode','builder'),(8283,1894,'_elementor_template_type','wp-post'),(8284,1894,'_elementor_version','2.9.2'),(8285,1894,'post_views_count','1'),(8286,1894,'_wp_page_template','default'),(8287,1894,'_elementor_data','[{\"id\":\"34e29e96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dbb7b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c17f807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1da14a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"418cf5e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78b89b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"1db74cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Scratch Design revamp\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10709d00\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c2c20b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"574f83c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"681b0a0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a4673b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"757e0dbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ab3626e\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308483e\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"27436db4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5b5d5c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27f14c4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2551dab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1cf6486c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77d46f74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"547e7cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44eb75ce\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8288,1894,'_thumbnail_id','108'),(8289,1894,'_dp_original','94'),(8290,1894,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(8292,688,'_elementor_edit_mode','builder'),(8293,688,'_elementor_template_type','wp-post'),(8294,688,'_elementor_version','2.9.2'),(8295,688,'post_views_count','1'),(8296,688,'_wp_page_template','default'),(8297,688,'_elementor_data','[{\"id\":\"5341cb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"556b8d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddbc38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"452db158\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54918202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"575dea0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"b6abc3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Abstract Posters\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f1bf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13ca6964\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"27d0d19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16527799\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f6599\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"78cbfa0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f89543\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3333d8ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cd11123\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"264ea3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14725fa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6bae4e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4ef9d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bdf06ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b370ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dbde7ae\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8298,688,'_thumbnail_id','110'),(8299,688,'_dp_original','94'),(8300,688,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(8302,689,'_elementor_edit_mode','builder'),(8303,689,'_elementor_template_type','wp-post'),(8304,689,'_elementor_version','2.9.2'),(8305,689,'post_views_count','1'),(8306,689,'_wp_page_template','default'),(8307,689,'_elementor_data','[{\"id\":\"6a8f437e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"62addb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"433a7518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"42ef6e06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a410770\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"39e6a989\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"59e320d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60fa92fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"44c81f72\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5bd9c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0509d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"780e49e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"14b34a5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d45262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cb78086\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2b531dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"479d7768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"276910fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1a29a086\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"440bbdb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12058996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cea6391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc92e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8308,689,'_thumbnail_id','111'),(8309,689,'_dp_original','94'),(8310,689,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(8640,633,'_wp_page_template','default'),(8641,633,'_elementor_edit_mode','builder'),(8642,633,'_elementor_template_type','wp-post'),(8643,633,'_elementor_version','2.9.2'),(8644,633,'post_views_count','11'),(8645,633,'_elementor_data','[{\"id\":\"29c8a68d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee010a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1de4c32\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35dc1937\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d83737f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-6.png\",\"id\":960},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ea17d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADD DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cb1b1d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbed2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6f995b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f7d3669\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7abf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20f15ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c2617\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2686fd2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ef01c6\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c3b1d5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14b9a742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1fd0c1d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"4fa34e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2c2c2737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"5be012da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"666c7df7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11a03e75\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c95e26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"60564d49\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e8b6df\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79333595\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"432de128\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18e355c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"1d208f28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d294a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"322f4c02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4931f755\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"4b7589da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ffcef11\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"4ff18b90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8646,633,'_dp_original','222'),(8647,633,'_thumbnail_id','960'),(8648,633,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(8650,690,'_elementor_edit_mode','builder'),(8651,690,'_elementor_template_type','wp-post'),(8652,690,'_elementor_version','2.9.2'),(8653,690,'post_views_count','1'),(8654,690,'_wp_page_template','default'),(8655,690,'_elementor_data','[{\"id\":\"763b2c9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a92f15d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"312b8f52\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"643e4829\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bc97d3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74fb902a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"1a18204d\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Abstract Posters\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7537a941\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21e15787\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cafcdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38000266\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae01b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5b99725d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569f45b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fd1f32c\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7426489d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4f86eb08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ee6dfa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1fb2c984\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3fe94071\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60ff44f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"763b8a64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a9842a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8656,690,'_thumbnail_id','112'),(8657,690,'_dp_original','94'),(8658,690,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(8660,691,'_elementor_edit_mode','builder'),(8661,691,'_elementor_template_type','wp-post'),(8662,691,'_elementor_version','2.9.2'),(8663,691,'post_views_count','1'),(8664,691,'_wp_page_template','default'),(8665,691,'_elementor_data','[{\"id\":\"a9afced\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d3e4b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"33842074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ec21c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7dfbaa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2f4f3f86\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"3e73c471\",\"elType\":\"widget\",\"settings\":{\"title\":\"T-Shirt Mockups Design\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"151d8ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b9d7513\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"af89658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b36f4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3edcf824\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53779507\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1610c1c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61af48ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7bcccdfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2f263538\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fde630e\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66139fde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"366cf473\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74563419\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c53ae1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2425d81f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8666,691,'_thumbnail_id','113'),(8667,691,'_dp_original','94'),(8668,691,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(8670,692,'_elementor_edit_mode','builder'),(8671,692,'_elementor_template_type','wp-post'),(8672,692,'_elementor_version','2.9.2'),(8673,692,'post_views_count','1'),(8674,692,'_wp_page_template','default'),(8675,692,'_elementor_data','[{\"id\":\"252336d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"145a4452\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"23006d4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"601b577b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6deab975\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19eb83a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"4208d42a\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dc21cc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"893adb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4737cbab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cba99bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76662f24\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8ca94e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6901b2fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bc784d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"572d7869\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"68f75729\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e8705\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7cd78fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5e57ff94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bef3cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e1f1244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42fc50ae\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8676,692,'_thumbnail_id','114'),(8677,692,'_dp_original','94'),(8678,692,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(8680,693,'_elementor_edit_mode','builder'),(8681,693,'_elementor_template_type','wp-post'),(8682,693,'_elementor_version','2.9.2'),(8683,693,'post_views_count','1'),(8684,693,'_wp_page_template','default'),(8685,693,'_elementor_data','[{\"id\":\"7e5480b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c619d4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"77616fa4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d378d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3518cd08\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57dd6aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"2e8aee2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"T-Shirt Mockups Design\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41891448\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb6cf65\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ea5152\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f2db36\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aaaab65\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"168b451f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25c32b92\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3097b923\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"744e88ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"71bd07d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d8f8912\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"83c6a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"10124725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f91c437\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b1dc0cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c8d3346\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(8686,693,'_thumbnail_id','109'),(8687,693,'_dp_original','94'),(8688,693,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(8690,1052,'_elementor_edit_mode','builder'),(8691,1052,'_elementor_template_type','wp-post'),(8692,1052,'_elementor_version','2.9.2'),(8693,1052,'_wp_page_template','default'),(8694,1052,'_elementor_data','[{\"id\":\"532b46da\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d430be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"2246312a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef4d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"361f9eb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"bf00c81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"4ccf1d0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alan Fresco\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a86701\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"76b4d990\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"441ab2f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"213d7386\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3492613\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"75929a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"44ff9931\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8695,1052,'designation',''),(8696,1052,'_designation','field_5d12060eddf8a'),(8697,1052,'social_info_0_social_url','https://facebook.com'),(8698,1052,'_social_info_0_social_url','field_5d1207aaeca4f'),(8699,1052,'social_info_0_social_icon','fa-facebook'),(8700,1052,'_social_info_0_social_icon','field_5d120bdb011ca'),(8701,1052,'social_info_1_social_url','https://twitter.com'),(8702,1052,'_social_info_1_social_url','field_5d1207aaeca4f'),(8703,1052,'social_info_1_social_icon','fa-twitter'),(8704,1052,'_social_info_1_social_icon','field_5d120bdb011ca'),(8705,1052,'social_info_2_social_url','https://linkedin.com'),(8706,1052,'_social_info_2_social_url','field_5d1207aaeca4f'),(8707,1052,'social_info_2_social_icon','fa-linkedin'),(8708,1052,'_social_info_2_social_icon','field_5d120bdb011ca'),(8709,1052,'social_info','3'),(8710,1052,'_social_info','field_5d12064deca4e'),(8711,1052,'_dp_original','297'),(8712,1052,'_thumbnail_id','1110'),(8713,1052,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";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:5:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8715,1080,'_thumbnail_id','1116'),(8716,1080,'_elementor_edit_mode','builder'),(8717,1080,'_elementor_template_type','wp-post'),(8718,1080,'_elementor_version','2.9.2'),(8719,1080,'_wp_page_template','default'),(8720,1080,'_elementor_data','[{\"id\":\"3fac7401\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"63951475\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"1e8f003d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"60e24d8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"15e82706\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"626c0e4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"44023def\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sue Shei\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b3cdedb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6c61cd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"167cd116\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"329e2fa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e61e88f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4a3b3e0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3210d663\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"41\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8721,1080,'designation',''),(8722,1080,'_designation','field_5d12060eddf8a'),(8723,1080,'social_info_0_social_url','https://facebook.com'),(8724,1080,'_social_info_0_social_url','field_5d1207aaeca4f'),(8725,1080,'social_info_0_social_icon','fa-facebook'),(8726,1080,'_social_info_0_social_icon','field_5d120bdb011ca'),(8727,1080,'social_info_1_social_url','https://twitter.com'),(8728,1080,'_social_info_1_social_url','field_5d1207aaeca4f'),(8729,1080,'social_info_1_social_icon','fa-twitter'),(8730,1080,'_social_info_1_social_icon','field_5d120bdb011ca'),(8731,1080,'social_info_2_social_url','https://linkedin.com'),(8732,1080,'_social_info_2_social_url','field_5d1207aaeca4f'),(8733,1080,'social_info_2_social_icon','fa-linkedin'),(8734,1080,'_social_info_2_social_icon','field_5d120bdb011ca'),(8735,1080,'social_info','3'),(8736,1080,'_social_info','field_5d12064deca4e'),(8737,1080,'_dp_original','1052'),(8738,1080,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8740,1081,'_thumbnail_id','1117'),(8741,1081,'_elementor_edit_mode','builder'),(8742,1081,'_elementor_template_type','wp-post'),(8743,1081,'_elementor_version','2.9.2'),(8744,1081,'_wp_page_template','default'),(8745,1081,'_elementor_data','[{\"id\":\"55064824\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"204c8edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"2c522bdd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1edd6378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4678631e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"5d5b3035\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2a8772e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sir Cumference\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3a7c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"310740e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32ea8a9f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7501e2a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b849e2c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4b61fa50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4656f6c4\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8746,1081,'designation',''),(8747,1081,'_designation','field_5d12060eddf8a'),(8748,1081,'social_info_0_social_url','https://facebook.com'),(8749,1081,'_social_info_0_social_url','field_5d1207aaeca4f'),(8750,1081,'social_info_0_social_icon','fa-facebook'),(8751,1081,'_social_info_0_social_icon','field_5d120bdb011ca'),(8752,1081,'social_info_1_social_url','https://twitter.com'),(8753,1081,'_social_info_1_social_url','field_5d1207aaeca4f'),(8754,1081,'social_info_1_social_icon','fa-twitter'),(8755,1081,'_social_info_1_social_icon','field_5d120bdb011ca'),(8756,1081,'social_info_2_social_url','https://linkedin.com'),(8757,1081,'_social_info_2_social_url','field_5d1207aaeca4f'),(8758,1081,'social_info_2_social_icon','fa-linkedin'),(8759,1081,'_social_info_2_social_icon','field_5d120bdb011ca'),(8760,1081,'social_info','3'),(8761,1081,'_social_info','field_5d12064deca4e'),(8762,1081,'_dp_original','1052'),(8763,1081,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8765,1082,'_thumbnail_id','1118'),(8766,1082,'_elementor_edit_mode','builder'),(8767,1082,'_elementor_template_type','wp-post'),(8768,1082,'_elementor_version','2.9.2'),(8769,1082,'_wp_page_template','default'),(8770,1082,'_elementor_data','[{\"id\":\"72beb301\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e7aa0ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"27f4d2bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7bd3d471\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7f7b42\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"3ca28636\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"744b0425\",\"elType\":\"widget\",\"settings\":{\"title\":\"Valentino Morose\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b15ee1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e59a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4710808a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11bc0e0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b314889\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5698e39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b206611\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8771,1082,'designation',''),(8772,1082,'_designation','field_5d12060eddf8a'),(8773,1082,'social_info_0_social_url','https://facebook.com'),(8774,1082,'_social_info_0_social_url','field_5d1207aaeca4f'),(8775,1082,'social_info_0_social_icon','fa-facebook'),(8776,1082,'_social_info_0_social_icon','field_5d120bdb011ca'),(8777,1082,'social_info_1_social_url','https://twitter.com'),(8778,1082,'_social_info_1_social_url','field_5d1207aaeca4f'),(8779,1082,'social_info_1_social_icon','fa-twitter'),(8780,1082,'_social_info_1_social_icon','field_5d120bdb011ca'),(8781,1082,'social_info_2_social_url','https://linkedin.com'),(8782,1082,'_social_info_2_social_url','field_5d1207aaeca4f'),(8783,1082,'social_info_2_social_icon','fa-linkedin'),(8784,1082,'_social_info_2_social_icon','field_5d120bdb011ca'),(8785,1082,'social_info','3'),(8786,1082,'_social_info','field_5d12064deca4e'),(8787,1082,'_dp_original','1052'),(8788,1082,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8790,1083,'_thumbnail_id','1113'),(8791,1083,'_elementor_edit_mode','builder'),(8792,1083,'_elementor_template_type','wp-post'),(8793,1083,'_elementor_version','2.9.2'),(8794,1083,'_wp_page_template','default'),(8795,1083,'_elementor_data','[{\"id\":\"45db3f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"462b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"34bad0f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"31f16626\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5457a0e7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"6e3ab27a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2a796fa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Parsley Montana\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a65805b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2d89529f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3702decc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f7580f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"98749c4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"eba5668\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"720785e0\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8796,1083,'designation',''),(8797,1083,'_designation','field_5d12060eddf8a'),(8798,1083,'social_info_0_social_url','https://facebook.com'),(8799,1083,'_social_info_0_social_url','field_5d1207aaeca4f'),(8800,1083,'social_info_0_social_icon','fa-facebook'),(8801,1083,'_social_info_0_social_icon','field_5d120bdb011ca'),(8802,1083,'social_info_1_social_url','https://twitter.com'),(8803,1083,'_social_info_1_social_url','field_5d1207aaeca4f'),(8804,1083,'social_info_1_social_icon','fa-twitter'),(8805,1083,'_social_info_1_social_icon','field_5d120bdb011ca'),(8806,1083,'social_info_2_social_url','https://linkedin.com'),(8807,1083,'_social_info_2_social_url','field_5d1207aaeca4f'),(8808,1083,'social_info_2_social_icon','fa-linkedin'),(8809,1083,'_social_info_2_social_icon','field_5d120bdb011ca'),(8810,1083,'social_info','3'),(8811,1083,'_social_info','field_5d12064deca4e'),(8812,1083,'_dp_original','1052'),(8813,1083,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8815,1147,'_wp_page_template','default'),(8816,1147,'_elementor_edit_mode','builder'),(8817,1147,'_elementor_template_type','wp-post'),(8818,1147,'_elementor_version','2.9.2'),(8819,1147,'post_views_count','11'),(8820,1147,'_elementor_data','[{\"id\":\"46a67e46\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f79f54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6741b23\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2809252d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"287fed69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-5.png\",\"id\":959},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262095e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT MARKETING\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c663592\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e9ab2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"26cb489d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c8a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"19d1642f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"69672683\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b5a2ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ddc40f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fac24c\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5134d6a6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27eea102\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"27b1e32d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"6604486d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2cda8ee9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"1468b4a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"159fa229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1035ead7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74409994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"786f379c\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d176c04\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c1004e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"3d169430\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c5d06ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"48625998\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"338e7fe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"29eb9ac2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8305586\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6b0a248c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"12d71c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"4f73013a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8821,1147,'_thumbnail_id','959'),(8822,1147,'_dp_original','633'),(8823,1147,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(8825,1148,'_wp_page_template','default'),(8826,1148,'_elementor_edit_mode','builder'),(8827,1148,'_elementor_template_type','wp-post'),(8828,1148,'_elementor_version','2.9.2'),(8829,1148,'post_views_count','11'),(8830,1148,'_elementor_data','[{\"id\":\"648e20cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"41c37536\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"98cf08e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"166141b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"518a46de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-4.png\",\"id\":961},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2ce6a0a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ce6d110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"49171c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"57da619d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"125d12a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1d1005d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ed58672\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27cf78f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"267b7fdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5472f51\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f5c9c9e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"146cbd2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"459a2e68\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"2bd586ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"6ea46212\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"57942b8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76b232b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61ab3c97\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ddf182e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d84e475\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e48800e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b7bbf24\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"435c908c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"581f337\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"24fd38df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"69f95d01\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"42d51e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65ec09e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"16852a98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fbea3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"6bcc9ada\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8831,1148,'_thumbnail_id','961'),(8832,1148,'_dp_original','633'),(8833,1148,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(8835,1149,'_wp_page_template','default'),(8836,1149,'_elementor_edit_mode','builder'),(8837,1149,'_elementor_template_type','wp-post'),(8838,1149,'_elementor_version','2.9.2'),(8839,1149,'post_views_count','11'),(8840,1149,'_elementor_data','[{\"id\":\"74a62ff1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"726bb5ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5951a147\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33d1d58e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fc0011\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-3.png\",\"id\":962},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed62143\",\"elType\":\"widget\",\"settings\":{\"title\":\"WEB SOLUTIONS\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2273f7be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479c9d19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"21759e47\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"60ee8882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4502b1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5a780118\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8e2126\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55ffb6e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d4ae216\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"581fb7ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415d7b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8b16df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"28983aed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a953d57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"35b027fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c1b9830\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"17429f7b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156c5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37a3d533\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e3d883\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7904098c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"58feb7d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"223dcddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"43309f75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4743358\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"104e2550\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7dd3cb0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6dff704a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2cf48e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"41e315c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8841,1149,'_thumbnail_id','962'),(8842,1149,'_dp_original','633'),(8843,1149,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(8845,1150,'_wp_page_template','default'),(8846,1150,'_elementor_edit_mode','builder'),(8847,1150,'_elementor_template_type','wp-post'),(8848,1150,'_elementor_version','2.9.2'),(8849,1150,'post_views_count','11'),(8850,1150,'_elementor_data','[{\"id\":\"30f20a48\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"303abe13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76a4e382\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cee16c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"98028a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-2.png\",\"id\":963},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"627ee9c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRANDING & IDENTITY\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56235d6a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec3812d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"128386b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"156359ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"75439c74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"598343d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f530799\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f14fb8a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c8a74b0\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bfc00f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73141ac7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"195a48b9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"764c6a34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2b9344c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"3f47049e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"138595d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"533919ea\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c83bc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c7873b9\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29c85afa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48dd7acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"4fb8bfe3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78b336bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"751046f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"200a7243\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"59a087f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"41f5c20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"40ae20d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c7e4a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"1110fa0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8851,1150,'_thumbnail_id','963'),(8852,1150,'_dp_original','633'),(8853,1150,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(8855,1151,'_wp_page_template','default'),(8856,1151,'_elementor_edit_mode','builder'),(8857,1151,'_elementor_template_type','wp-post'),(8858,1151,'_elementor_version','2.9.2'),(8859,1151,'post_views_count','11'),(8860,1151,'_elementor_data','[{\"id\":\"4c113b7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cccafb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37212b33\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"939d4be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1115261c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-1.png\",\"id\":964},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6933b9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DESIGN\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2133d0ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"722e1a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3843e9e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"619f9ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7253494a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37553a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f938958\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35f1624b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c8a6e6b\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_bg\":\"#1DA1F2\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_bg\":\"#EE1B22\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_bg\":\"#0077B5\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11988544\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c32a717\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"42b26483\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"199e8dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"68f7f6f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"3e5cb90d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1be41042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"20c62575\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"688ae098\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d761aae\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dabd33e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e72b00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"516dd127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3daac532\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"3f4bcab1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4380cbe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6eb3661c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"44fc4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6b9090c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a0cd972\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"588f9d84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8861,1151,'_thumbnail_id','964'),(8862,1151,'_dp_original','633'),(8863,1151,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:7:{s:18:\"f_icon_hover_color\";i:1;s:9:\"t_icon_bg\";i:1;s:18:\"t_icon_hover_color\";i:1;s:9:\"p_icon_bg\";i:1;s:18:\"p_icon_hover_color\";i:1;s:9:\"l_icon_bg\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(8923,1084,'_thumbnail_id','1852'),(8924,1084,'_elementor_edit_mode','builder'),(8925,1084,'_elementor_template_type','wp-post'),(8926,1084,'_elementor_version','2.9.2'),(8927,1084,'_wp_page_template','default'),(8928,1084,'_elementor_data','[{\"id\":\"492b8dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"f81394f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cd05d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2347edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"677076b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"ff8cd68\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rodney Artichoke\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a60e4a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dfde2b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb55b0f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71b9839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31109fb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"917f803\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d4e9c1\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}],\"_margin_mobile\":{\"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\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}],\"_margin_mobile\":{\"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\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"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\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_subtitle_typography\":\"custom\",\"typography_subtitle_font_family\":\"Montserrat\",\"typography_subtitle_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8929,1084,'designation',''),(8930,1084,'_designation','field_5d12060eddf8a'),(8931,1084,'social_info_0_social_url','https://facebook.com'),(8932,1084,'_social_info_0_social_url','field_5d1207aaeca4f'),(8933,1084,'social_info_0_social_icon','fa-facebook'),(8934,1084,'_social_info_0_social_icon','field_5d120bdb011ca'),(8935,1084,'social_info_1_social_url','https://twitter.com'),(8936,1084,'_social_info_1_social_url','field_5d1207aaeca4f'),(8937,1084,'social_info_1_social_icon','fa-twitter'),(8938,1084,'_social_info_1_social_icon','field_5d120bdb011ca'),(8939,1084,'social_info_2_social_url','https://linkedin.com'),(8940,1084,'_social_info_2_social_url','field_5d1207aaeca4f'),(8941,1084,'social_info_2_social_icon','fa-linkedin'),(8942,1084,'_social_info_2_social_icon','field_5d120bdb011ca'),(8943,1084,'social_info','3'),(8944,1084,'_social_info','field_5d12064deca4e'),(8945,1084,'_dp_original','1052'),(8946,1084,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:2;}}}}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:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:3:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}s:14:\"style_subtitle\";a:3:{s:30:\"typography_subtitle_typography\";i:1;s:31:\"typography_subtitle_font_family\";i:1;s:36:\"typography_subtitle_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}}'),(8948,1085,'_thumbnail_id','1113'),(8949,1085,'_elementor_edit_mode','builder'),(8950,1085,'_elementor_template_type','wp-post'),(8951,1085,'_elementor_version','2.9.2'),(8952,1085,'_wp_page_template','default'),(8953,1085,'_elementor_data','[{\"id\":\"53d2d3ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f0e262b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"4a059577\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e056fa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4443686f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"326a98f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"72ed4822\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nathaneal Down\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10ea67d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"659a451a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3684749\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"669ebe1e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"55e81a87\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"39185bf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"64b2201e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8954,1085,'designation',''),(8955,1085,'_designation','field_5d12060eddf8a'),(8956,1085,'social_info_0_social_url','https://facebook.com'),(8957,1085,'_social_info_0_social_url','field_5d1207aaeca4f'),(8958,1085,'social_info_0_social_icon','fa-facebook'),(8959,1085,'_social_info_0_social_icon','field_5d120bdb011ca'),(8960,1085,'social_info_1_social_url','https://twitter.com'),(8961,1085,'_social_info_1_social_url','field_5d1207aaeca4f'),(8962,1085,'social_info_1_social_icon','fa-twitter'),(8963,1085,'_social_info_1_social_icon','field_5d120bdb011ca'),(8964,1085,'social_info_2_social_url','https://linkedin.com'),(8965,1085,'_social_info_2_social_url','field_5d1207aaeca4f'),(8966,1085,'social_info_2_social_icon','fa-linkedin'),(8967,1085,'_social_info_2_social_icon','field_5d120bdb011ca'),(8968,1085,'social_info','3'),(8969,1085,'_social_info','field_5d12064deca4e'),(8970,1085,'_dp_original','1052'),(8971,1085,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8973,1086,'_thumbnail_id','1112'),(8974,1086,'_elementor_edit_mode','builder'),(8975,1086,'_elementor_template_type','wp-post'),(8976,1086,'_elementor_version','2.9.2'),(8977,1086,'_wp_page_template','default'),(8978,1086,'_elementor_data','[{\"id\":\"4844fb68\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b75a433\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"301991d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7df9042c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a999527\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"78858a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6d74794f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jim S\\u00e9chen\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a2134fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6ffb2ec7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e555089\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14417664\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2660b524\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"25173070\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"1973d254\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(8979,1086,'designation',''),(8980,1086,'_designation','field_5d12060eddf8a'),(8981,1086,'social_info_0_social_url','https://facebook.com'),(8982,1086,'_social_info_0_social_url','field_5d1207aaeca4f'),(8983,1086,'social_info_0_social_icon','fa-facebook'),(8984,1086,'_social_info_0_social_icon','field_5d120bdb011ca'),(8985,1086,'social_info_1_social_url','https://twitter.com'),(8986,1086,'_social_info_1_social_url','field_5d1207aaeca4f'),(8987,1086,'social_info_1_social_icon','fa-twitter'),(8988,1086,'_social_info_1_social_icon','field_5d120bdb011ca'),(8989,1086,'social_info_2_social_url','https://linkedin.com'),(8990,1086,'_social_info_2_social_url','field_5d1207aaeca4f'),(8991,1086,'social_info_2_social_icon','fa-linkedin'),(8992,1086,'_social_info_2_social_icon','field_5d120bdb011ca'),(8993,1086,'social_info','3'),(8994,1086,'_social_info','field_5d12064deca4e'),(8995,1086,'_dp_original','1052'),(8996,1086,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;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:13:\"content_width\";i:1;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:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;}}}}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:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(8998,1895,'_thumbnail_id','1114'),(8999,1895,'_elementor_edit_mode','builder'),(9000,1895,'_elementor_template_type','wp-post'),(9001,1895,'_elementor_version','2.9.2'),(9002,1895,'_wp_page_template','default'),(9003,1895,'_elementor_data','[{\"id\":\"5701b3d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"24e9ff24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"247c3835\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"57a14dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"49acbd29\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"48d5aa7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6fefafab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lance Bogrol\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b68792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42b598fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55522ea3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73a367ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34ab4f12\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"528e002a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"42876765\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9004,1895,'designation',''),(9005,1895,'_designation','field_5d12060eddf8a'),(9006,1895,'social_info_0_social_url','https://facebook.com'),(9007,1895,'_social_info_0_social_url','field_5d1207aaeca4f'),(9008,1895,'social_info_0_social_icon','fa-facebook'),(9009,1895,'_social_info_0_social_icon','field_5d120bdb011ca'),(9010,1895,'social_info_1_social_url','https://twitter.com'),(9011,1895,'_social_info_1_social_url','field_5d1207aaeca4f'),(9012,1895,'social_info_1_social_icon','fa-twitter'),(9013,1895,'_social_info_1_social_icon','field_5d120bdb011ca'),(9014,1895,'social_info_2_social_url','https://linkedin.com'),(9015,1895,'_social_info_2_social_url','field_5d1207aaeca4f'),(9016,1895,'social_info_2_social_icon','fa-linkedin'),(9017,1895,'_social_info_2_social_icon','field_5d120bdb011ca'),(9018,1895,'social_info','3'),(9019,1895,'_social_info','field_5d12064deca4e'),(9020,1895,'_dp_original','1052'),(9021,1895,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;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:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(9023,1088,'_thumbnail_id','1111'),(9024,1088,'_elementor_edit_mode','builder'),(9025,1088,'_elementor_template_type','wp-post'),(9026,1088,'_elementor_version','2.9.2'),(9027,1088,'_wp_page_template','default'),(9028,1088,'_elementor_data','[{\"id\":\"3bf81093\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"36\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"326103b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"629cf2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"104a0959\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"542b60e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"438a3e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"7095e9a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Giles Posture\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f4cad80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7714b98c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"577c405d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"31c00b5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69a67242\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"622b55c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"64ee3374\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9029,1088,'designation',''),(9030,1088,'_designation','field_5d12060eddf8a'),(9031,1088,'social_info_0_social_url','https://facebook.com'),(9032,1088,'_social_info_0_social_url','field_5d1207aaeca4f'),(9033,1088,'social_info_0_social_icon','fa-facebook'),(9034,1088,'_social_info_0_social_icon','field_5d120bdb011ca'),(9035,1088,'social_info_1_social_url','https://twitter.com'),(9036,1088,'_social_info_1_social_url','field_5d1207aaeca4f'),(9037,1088,'social_info_1_social_icon','fa-twitter'),(9038,1088,'_social_info_1_social_icon','field_5d120bdb011ca'),(9039,1088,'social_info_2_social_url','https://linkedin.com'),(9040,1088,'_social_info_2_social_url','field_5d1207aaeca4f'),(9041,1088,'social_info_2_social_icon','fa-linkedin'),(9042,1088,'_social_info_2_social_icon','field_5d120bdb011ca'),(9043,1088,'social_info','3'),(9044,1088,'_social_info','field_5d12064deca4e'),(9045,1088,'_dp_original','1052'),(9046,1088,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;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:13:\"content_width\";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:2;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;}}}}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:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(9048,1896,'_elementor_edit_mode','builder'),(9049,1896,'_elementor_template_type','section'),(9050,1896,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;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:4;s:13:\"content_width\";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:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:8:\"position\";i:6;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:6;s:10:\"image_size\";i:6;}s:21:\"section_style_content\";a:13:{s:18:\"title_bottom_space\";i:6;s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:17:\"description_color\";i:6;s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:34:\"description_typography_line_height\";i:6;}}}}}'),(9051,1896,'_elementor_version','2.7.5'),(9052,1896,'_elementor_data','[{\"id\":\"41e1a5d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service-patterns.jpg\",\"id\":50},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f13f172\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"54812e5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"e3db0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4f2b259\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT COMPANY PROVIDE\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.98,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50f3ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company Services\\n\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46d96de\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"aa090b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.1},\"elements\":[{\"id\":\"cb4886f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/diamond.png\",\"id\":46},\"title_text\":\"Unique Design\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"87e2a03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2},\"elements\":[{\"id\":\"3da681a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/browser.png\",\"id\":45},\"title_text\":\"BRANDING & IDENTITY\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5b30a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.5},\"elements\":[{\"id\":\"f786290\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/settings.png\",\"id\":49},\"title_text\":\"WEB SOLUTIONS\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":24,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e4e0623\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ab79b19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.1},\"elements\":[{\"id\":\"650d826\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/bar-chart.png\",\"id\":44},\"title_text\":\"PRODUCT DEVELOPMENT\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"75b4447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.4},\"elements\":[{\"id\":\"1697740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/profits.png\",\"id\":47},\"title_text\":\"PRODUCT MARKETING\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"be7e6bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.6},\"elements\":[{\"id\":\"5c4dade\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/sales.png\",\"id\":48},\"title_text\":\"ADD DEVELOPMENT\",\"description_text\":\"Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#333333\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#666666\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"693c0f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":-46.5,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9053,1897,'_elementor_edit_mode','builder'),(9054,1897,'_elementor_template_type','section'),(9055,1897,'_elementor_controls_usage','a:6:{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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;}}}}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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";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_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(9056,1897,'_elementor_version','2.8.3'),(9057,1897,'_wp_page_template','default'),(9058,1897,'_elementor_data','[{\"id\":\"10191bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]}},\"elements\":[{\"id\":\"6fd99a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.833},\"elements\":[{\"id\":\"2dff5f42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"509d5d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167},\"elements\":[{\"id\":\"6588398f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25cc6f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f652f33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Top 100 digital art design\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3db706\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e946a02\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f5a2144\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d28e680\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d4612a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6d11a30c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5d25f566\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46cf484b\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"71e0fc5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"18fe38cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cee7358\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"517f2dc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5339779a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7599eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"89f778e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>t cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7649e2c0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social\":\"fa fa-envelope\",\"_id\":\"b165c7f\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9059,1898,'_elementor_edit_mode','builder'),(9060,1898,'_elementor_template_type','section'),(9061,1898,'_elementor_controls_usage','a:3:{s:14:\"zix-statistics\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:18:\"statistics_section\";a:1:{s:5:\"title\";i:1;}s:8:\"desc_sec\";a:1:{s:11:\"description\";i:1;}s:19:\"count_item_repeater\";a:1:{s:12:\"stat_counter\";i:1;}s:12:\"shape_images\";a:1:{s:7:\"shape_1\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:32:\"statistics_background_background\";i:1;s:27:\"statistics_background_image\";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:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}}'),(9062,1898,'_elementor_version','2.8.3'),(9063,1898,'_elementor_data','[{\"id\":\"76bebe14\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"aa56e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2c773a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Agency For <br> your Business\",\"description\":\"Nullam bibendum odio a sem bibendum, ut vestibulum ipsum porttitor nec orci et cursus. Vestibulum facilisis rhoncus tempor. Duis non ipsui nec orci et cursus. Vestibulum facilisis rhoncus tempor.\",\"stat_counter\":[{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon1.png\",\"id\":552},\"font_icon\":\"\",\"count_number\":1600,\"counter_title\":\"Process Projects\",\"_id\":\"48a1463\"},{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon2.png\",\"id\":553},\"font_icon\":\"\",\"count_number\":1000,\"counter_title\":\"Awards Winner\",\"_id\":\"ba44362\"},{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon3.png\",\"id\":554},\"font_icon\":\"\",\"count_number\":1500,\"counter_title\":\"Complete Projects\",\"_id\":\"0346be0\"},{\"select_icon\":\"img\",\"img_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon4.png\",\"id\":555},\"font_icon\":\"\",\"count_number\":1000,\"counter_title\":\"Successful Projects\",\"_id\":\"7916b58\"}],\"statistics_background_background\":\"classic\",\"statistics_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/we_do_bg.png\",\"id\":551},\"shape_1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-statistics\"}],\"isInner\":false}],\"isInner\":false}]'),(9064,1899,'_elementor_edit_mode','builder'),(9065,1899,'_elementor_template_type','section'),(9066,1899,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";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:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:6:\"layout\";i:2;}}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:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(9067,1899,'_elementor_version','2.8.3'),(9068,1899,'_wp_page_template','default'),(9069,1899,'_elementor_data','[{\"id\":\"249a3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d24c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"61d62418\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"5d42dfbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"7053d540\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.98,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"109e5c64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308ae11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"545678d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db38cab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39a7fef2\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9070,1900,'_elementor_edit_mode','builder'),(9071,1900,'_elementor_template_type','section'),(9072,1900,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:13:\"margin_mobile\";i:5;s:6:\"margin\";i:5;}}}}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:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}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:1:{s:7:\"padding\";i:1;}}}}}'),(9073,1900,'_elementor_version','2.8.3'),(9074,1900,'_wp_page_template','default'),(9075,1900,'_elementor_data','[{\"id\":\"21778acd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"334c26b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c49ebfc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"79b7562d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"205cf6a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a1a7595\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1df10e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6707f57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d7e0f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18c78bde\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"c76e64b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9076,1901,'_elementor_edit_mode','builder'),(9077,1901,'_elementor_template_type','section'),(9078,1901,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:10:\"image_size\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;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:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9079,1901,'_elementor_version','2.8.3'),(9080,1901,'_wp_page_template','default'),(9081,1901,'_elementor_data','[{\"id\":\"e5d4d7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b2d60d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.333,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"510f9587\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5098195e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a4daafa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-6.png\",\"id\":960},\"align\":\"left\",\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6945594c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADD DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25e0183b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"45a4b838\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.364,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19fecc08\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"41dca6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.602},\"elements\":[{\"id\":\"7d780b06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>John Clark<\\/li><li>2 Working Days<\\/li><li>$220<\\/li><li>High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5146e811\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.332,\"space_between_widgets\":0},\"elements\":[{\"id\":\"41eec9ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7874ae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9082,1902,'_elementor_edit_mode','builder'),(9083,1902,'_elementor_template_type','section'),(9084,1902,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:7:\"opacity\";i:5;s:22:\"css_filters_css_filter\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:5;s:27:\"background_hover_background\";i:5;s:27:\"background_hover_transition\";i:5;}s:26:\"section_background_overlay\";a:2:{s:32:\"background_overlay_hover_opacity\";i:5;s:26:\"background_overlay_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:13:\"margin_mobile\";i:5;s:6:\"margin\";i:5;}}}}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:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}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:1:{s:7:\"padding\";i:1;}}}}}'),(9085,1902,'_elementor_version','2.8.3'),(9086,1902,'_elementor_data','[{\"id\":\"233a7769\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"366ced3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1d9502cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5de8c0b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7802e6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7ebd3ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"59dfc154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a208124\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"69b69782\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ec00879\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_hover_background\":\"classic\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4218b6f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"hover_animation\":\"grow\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9087,1903,'_elementor_edit_mode','builder'),(9088,1903,'_elementor_template_type','section'),(9089,1903,'_elementor_version','2.9.2'),(9090,1903,'_wp_page_template','default'),(9091,1903,'_elementor_data','[{\"id\":\"1dfdf6e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"62cc516b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ccc6864\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9f05d4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605239bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"164923ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73c1e87f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"23a9a32d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3392ed16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"327ab2c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"338f1c9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9092,1903,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:6:\"margin\";i:5;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:5;}}}}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:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}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:1:{s:7:\"padding\";i:1;}}}}}'),(9093,1904,'_elementor_edit_mode','builder'),(9094,1904,'_elementor_template_type','section'),(9095,1904,'_elementor_version','2.9.2'),(9096,1904,'_wp_page_template','default'),(9097,1904,'_elementor_data','[{\"id\":\"4c5758f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8bf5c2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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\":\"5e5771c3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30b74754\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"451abb28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-6.png\",\"id\":960},\"align\":\"left\",\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a36704f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADD DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e16b703\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b1171f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e9ffacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6b2c708b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"58591037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"714659e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22f8338b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4aa07037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5793e690\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div class=\\\"f_social_icon\\\">\\r\\n <a href=\\\"https:\\/\\/facebook.com\\/sharer\\/sharer.php?u=<?php the_permalink(); ?>\\\"><i class=\\\"social_facebook\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/twitter.com\\/intent\\/tweet?text=<?php the_permalink(); ?>\\\"><i class=\\\"social_twitter\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.pinterest.com\\/pin\\/create\\/button\\/?url=<?php the_permalink() ?>\\\"><i class=\\\"social_pinterest\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.linkedin.com\\/shareArticle?mini=true&url=<?php the_permalink() ?>\\\"><i class=\\\"social_linkedin\\\"><\\/i><\\/a>\\r\\n <\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(9098,1904,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:10:\"image_size\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:2;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:2;}}}}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:6:\"layout\";i:1;s:3:\"gap\";i:3;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:3;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";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:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"html\";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_title\";a:1:{s:4:\"html\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9099,1905,'_elementor_edit_mode','builder'),(9100,1905,'_elementor_template_type','section'),(9101,1905,'_elementor_version','2.9.2'),(9102,1905,'_wp_page_template','default'),(9103,1905,'_elementor_data','[{\"id\":\"1cf26f35\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"716b3dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b02d03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17868b81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"90e2551\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2b227657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"38fa890e\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7923e431\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50a19076\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc8c7e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8e48dcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cf6c5b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"451ce7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f2993bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4114647b\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1b3c75e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"31a6764a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21f52f38\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"297130b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4e44ecea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c864d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3105b2eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d2c2d15\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9104,1905,'_elementor_controls_usage','a:6:{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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:11:\"text-editor\";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_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(9105,1906,'_elementor_edit_mode','builder'),(9106,1906,'_elementor_template_type','section'),(9107,1906,'_elementor_version','2.9.2'),(9108,1906,'_wp_page_template','default'),(9109,1906,'_elementor_data','[{\"id\":\"375ea932\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c2b919c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66058220\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0a6c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030ea13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-1.png\",\"id\":964},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5e7294a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DESIGN\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7cb01a02\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c411d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"47929ee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"62c5cb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"48c63d91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"de09e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd7fc96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"653cecae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f681241\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div class=\\\"f_social_icon\\\">\\r\\n <a href=\\\"https:\\/\\/facebook.com\\/sharer\\/sharer.php?u=<?php the_permalink(); ?>\\\"><i class=\\\"social_facebook\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/twitter.com\\/intent\\/tweet?text=<?php the_permalink(); ?>\\\"><i class=\\\"social_twitter\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.pinterest.com\\/pin\\/create\\/button\\/?url=<?php the_permalink() ?>\\\"><i class=\\\"social_pinterest\\\"><\\/i><\\/a>\\r\\n <a href=\\\"https:\\/\\/www.linkedin.com\\/shareArticle?mini=true&url=<?php the_permalink() ?>\\\"><i class=\\\"social_linkedin\\\"><\\/i><\\/a>\\r\\n <\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(9110,1906,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:5:\"align\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:7:\"padding\";i:4;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:3;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:2;}}}}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:6:\"layout\";i:1;s:3:\"gap\";i:2;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:3;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";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:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}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_mobile\";i:1;}}}}}'),(9111,1907,'_elementor_edit_mode','builder'),(9112,1907,'_elementor_template_type','section'),(9113,1907,'_elementor_version','2.9.2'),(9114,1907,'_wp_page_template','default'),(9115,1907,'_elementor_data','[{\"id\":\"25fd2120\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30025eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"224ab28a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30b99e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"5cbe2100\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"37952ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"984c2fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5e7cadab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"2e0cba2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b799b74\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"183e14ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9116,1907,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:6:\"margin\";i:5;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:5;}}s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}s:13:\"section_style\";a:2:{s:27:\"background_hover_background\";i:1;s:16:\"background_color\";i:4;}}}}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:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}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:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9117,1908,'_elementor_edit_mode','builder'),(9118,1908,'_elementor_template_type','section'),(9119,1908,'_elementor_version','2.9.2'),(9120,1908,'_wp_page_template','default'),(9121,1908,'_elementor_data','[{\"id\":\"c0dc930\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fcdb7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"167fdd69\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"fc20fc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"435f7bb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"78d0b38b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b36ba85\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46b50da4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51931f8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d4c979a\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9122,1908,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";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:2:{s:12:\"_inline_size\";i:2;s:21:\"space_between_widgets\";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:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:2;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:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(9123,1909,'_elementor_edit_mode','builder'),(9124,1909,'_elementor_template_type','section'),(9125,1909,'_elementor_version','2.9.2'),(9126,1909,'_wp_page_template','default'),(9127,1909,'_elementor_data','[{\"id\":\"47746670\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e59ad11\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"103b106f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4860eb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db97914\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"764f47a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"9bd73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rodney Artichoke\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"359980b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"48e03e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6195a814\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a556914\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d43dc78\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7a9e7f8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c412d49\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9128,1909,'_elementor_controls_usage','a:7:{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:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:13:\"margin_mobile\";i:3;s:14:\"padding_mobile\";i:2;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:13:\"content_width\";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:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_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:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-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:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}}'),(9477,1995,'_wp_attached_file','2020/10/log_file_2020-10-13__12-08-27.txt'),(9578,2000,'_elementor_edit_mode','builder'),(9579,2000,'_elementor_template_type','wp-post'),(9580,2000,'_elementor_version','2.8.3'),(9581,2000,'post_views_count','0'),(9582,2000,'_wp_page_template','elementor_canvas'),(9583,2000,'_elementor_data','[{\"id\":\"2038a16\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#130F38\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fc7bb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e229327\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4e1f2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":5},\"elements\":[{\"id\":\"58074a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/footer_logo.png\",\"id\":535},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3071b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit consectete eget orci dictum facili tellusLor or sit amet, consectetur Lorem sumi dictum facili tell us<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a17b2b9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"948ce69\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"b01abb8\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"fe532bb\",\"link\":{\"url\":\"https:\\/\\/youtube.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"a2dae3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"425eb5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e39273\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our Services\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"3bf5cc7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Portfolio Page\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"1e6326c\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"92ca6de\"},{\"text\":\"Pricing Plans\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"aa5b584\"},{\"text\":\"Contact us\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2e0fef6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#FC7C2C\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Muli\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f7c20da\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d27510\",\"elType\":\"widget\",\"settings\":{\"title\":\"Useful Links\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7277313\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our Product\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"3bf5cc7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Documentation\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"1e6326c\"},{\"text\":\"Service Details\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"92ca6de\"},{\"text\":\"Our Company\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"aa5b584\"},{\"text\":\"What We Do?\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2e0fef6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#FC7C2C\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Muli\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"ba4c7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4d6fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"127a188\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Wave, Via Habro Derennio 22\\/b 52100 Arezzo, Italy\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"c250487\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"[email protected]\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"fad8634\"},{\"text\":\"095 1856 558 (Toll Free)\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"84479af\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#FC7C2C\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e9ee06\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#423F60\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd901ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b82fc63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Zix - Copyright 2020. Design by <span style=\\\"color: #ffffff;\\\"><a style=\\\"color: #ffffff;\\\" href=\\\"https:\\/\\/droitthemes.com\\\">DroitThemes<\\/a><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9584,2000,'_elementor_controls_usage','a:7:{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:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;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:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:3:{s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";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:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:15:\"icon_self_align\";i:2;}s:18:\"section_text_style\";a:8:{s:10:\"text_color\";i:3;s:16:\"text_color_hover\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;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:1;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}}'),(9585,2000,'_wxr_import_has_attachment_refs','1'),(9739,593,'_menu_item_type','custom'),(9740,593,'_menu_item_menu_item_parent','0'),(9741,593,'_menu_item_object_id','593'),(9742,593,'_menu_item_object','custom'),(9743,593,'_menu_item_target',''),(9744,593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9745,593,'_menu_item_xfn',''),(9746,593,'_menu_item_url','http://tropofoto.com/'),(9747,593,'_elementor_controls_usage','a:0:{}'),(9778,2011,'_elementor_edit_mode','builder'),(9779,2011,'_elementor_template_type','wp-post'),(9780,2011,'_elementor_version','2.9.2'),(9781,2011,'post_views_count','1'),(9782,2011,'_wp_page_template','elementor_header_footer'),(9783,2011,'_elementor_data','[{\"id\":\"36409407\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"38d37d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4117f402\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20b3527b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2fc7d843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6914f827\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"39bda148\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d5a36c\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63a1aa38\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"710609d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67c090d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"770e6d34\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"414e28a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db01174\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dff6deb\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"59b9c9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e7c13d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22f064b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2d63e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3c1e62b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64be12ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"469d1141\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"775c8a2d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9784,2011,'_dp_original','93'),(9785,2011,'_thumbnail_id','107'),(9786,2011,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:5;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9787,2011,'_wxr_import_has_attachment_refs','1'),(9788,2012,'_elementor_edit_mode','builder'),(9789,2012,'_elementor_template_type','wp-post'),(9790,2012,'_elementor_version','2.9.2'),(9791,2012,'post_views_count','1'),(9792,2012,'_wp_page_template','default'),(9793,2012,'_elementor_data','[{\"id\":\"34e29e96\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dbb7b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c17f807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1da14a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"418cf5e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78b89b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"1db74cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Scratch Design revamp\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10709d00\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c2c20b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"574f83c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"681b0a0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a4673b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"757e0dbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ab3626e\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308483e\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"27436db4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5b5d5c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27f14c4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2551dab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1cf6486c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77d46f74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"547e7cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44eb75ce\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9794,2012,'_thumbnail_id','108'),(9795,2012,'_dp_original','94'),(9796,2012,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9797,2012,'_wxr_import_has_attachment_refs','1'),(9798,2013,'_elementor_edit_mode','builder'),(9799,2013,'_elementor_template_type','wp-post'),(9800,2013,'_elementor_version','2.9.2'),(9801,2013,'post_views_count','1'),(9802,2013,'_wp_page_template','default'),(9803,2013,'_elementor_data','[{\"id\":\"5341cb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"556b8d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddbc38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"452db158\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54918202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"575dea0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"b6abc3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Abstract Posters\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f1bf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13ca6964\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"27d0d19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16527799\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f6599\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"78cbfa0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f89543\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3333d8ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cd11123\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"264ea3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14725fa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6bae4e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4ef9d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bdf06ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b370ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dbde7ae\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9804,2013,'_thumbnail_id','110'),(9805,2013,'_dp_original','94'),(9806,2013,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9807,2013,'_wxr_import_has_attachment_refs','1'),(9808,2014,'_elementor_edit_mode','builder'),(9809,2014,'_elementor_template_type','wp-post'),(9810,2014,'_elementor_version','2.9.2'),(9811,2014,'post_views_count','1'),(9812,2014,'_wp_page_template','default'),(9813,2014,'_elementor_data','[{\"id\":\"6a8f437e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"62addb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"433a7518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"42ef6e06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a410770\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"39e6a989\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"59e320d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60fa92fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"44c81f72\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5bd9c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0509d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"780e49e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"14b34a5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d45262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cb78086\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2b531dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"479d7768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"276910fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1a29a086\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"440bbdb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12058996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cea6391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc92e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9814,2014,'_thumbnail_id','111'),(9815,2014,'_dp_original','94'),(9816,2014,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9817,2014,'_wxr_import_has_attachment_refs','1'),(9827,2015,'_wp_page_template','default'),(9828,2015,'_elementor_edit_mode','builder'),(9829,2015,'_elementor_template_type','wp-post'),(9830,2015,'_elementor_version','2.9.2'),(9831,2015,'post_views_count','11'),(9832,2015,'_elementor_data','[{\"id\":\"29c8a68d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee010a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1de4c32\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35dc1937\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d83737f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-6.png\",\"id\":960},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ea17d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADD DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cb1b1d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbed2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6f995b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f7d3669\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7abf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20f15ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c2617\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2686fd2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ef01c6\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c3b1d5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14b9a742\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1fd0c1d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"4fa34e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2c2c2737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"5be012da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"666c7df7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11a03e75\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c95e26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"60564d49\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e8b6df\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79333595\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"432de128\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18e355c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"1d208f28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d294a23\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"322f4c02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4931f755\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"4b7589da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ffcef11\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"4ff18b90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9833,2015,'_dp_original','222'),(9834,2015,'_thumbnail_id','960'),(9835,2015,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(9836,2015,'_wxr_import_has_attachment_refs','1'),(9837,2016,'_elementor_edit_mode','builder'),(9838,2016,'_elementor_template_type','wp-post'),(9839,2016,'_elementor_version','2.9.2'),(9840,2016,'post_views_count','1'),(9841,2016,'_wp_page_template','default'),(9842,2016,'_elementor_data','[{\"id\":\"763b2c9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a92f15d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"312b8f52\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"643e4829\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bc97d3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74fb902a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"1a18204d\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Abstract Posters\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7537a941\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21e15787\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cafcdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38000266\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae01b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5b99725d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569f45b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fd1f32c\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7426489d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4f86eb08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ee6dfa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1fb2c984\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3fe94071\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60ff44f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"763b8a64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a9842a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9843,2016,'_thumbnail_id','112'),(9844,2016,'_dp_original','94'),(9845,2016,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9846,2016,'_wxr_import_has_attachment_refs','1'),(9847,2017,'_elementor_edit_mode','builder'),(9848,2017,'_elementor_template_type','wp-post'),(9849,2017,'_elementor_version','2.9.2'),(9850,2017,'post_views_count','1'),(9851,2017,'_wp_page_template','default'),(9852,2017,'_elementor_data','[{\"id\":\"a9afced\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d3e4b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"33842074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ec21c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7dfbaa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2f4f3f86\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"3e73c471\",\"elType\":\"widget\",\"settings\":{\"title\":\"T-Shirt Mockups Design\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"151d8ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b9d7513\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"af89658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b36f4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3edcf824\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"53779507\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1610c1c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61af48ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7bcccdfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2f263538\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fde630e\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66139fde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"366cf473\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74563419\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c53ae1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2425d81f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9853,2017,'_thumbnail_id','113'),(9854,2017,'_dp_original','94'),(9855,2017,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9856,2017,'_wxr_import_has_attachment_refs','1'),(9857,2018,'_elementor_edit_mode','builder'),(9858,2018,'_elementor_template_type','wp-post'),(9859,2018,'_elementor_version','2.9.2'),(9860,2018,'post_views_count','1'),(9861,2018,'_wp_page_template','default'),(9862,2018,'_elementor_data','[{\"id\":\"252336d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"145a4452\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"23006d4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"601b577b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6deab975\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19eb83a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"4208d42a\",\"elType\":\"widget\",\"settings\":{\"title\":\"App Ui\\/UX & Development\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dc21cc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"893adb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4737cbab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cba99bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76662f24\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8ca94e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6901b2fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bc784d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"572d7869\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"68f75729\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e8705\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7cd78fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5e57ff94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bef3cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e1f1244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42fc50ae\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9863,2018,'_thumbnail_id','114'),(9864,2018,'_dp_original','94'),(9865,2018,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(9866,2018,'_wxr_import_has_attachment_refs','1'),(9867,2019,'_elementor_edit_mode','builder'),(9868,2019,'_elementor_template_type','wp-post'),(9869,2019,'_elementor_version','2.9.2'),(9870,2019,'post_views_count','1'),(9871,2019,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (9872,2019,'_elementor_data','[{\"id\":\"7e5480b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"25\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c619d4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.832999999999998408384271897375583648681640625,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"77616fa4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":987,\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/pr_details_1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d378d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.167000000000001591615728102624416351318359375,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3518cd08\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57dd6aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_tablet\":0},\"elements\":[{\"id\":\"2e8aee2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"T-Shirt Mockups Design\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"title_color\":\"#333333\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41891448\",\"elType\":\"widget\",\"settings\":{\"title\":\"creative, strategy, Art\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_color\":\"#fc7c2c\",\"typography_font_family\":\"Muli\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb6cf65\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ea5152\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f2db36\",\"elType\":\"widget\",\"settings\":{\"title\":\"Date:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aaaab65\",\"elType\":\"widget\",\"settings\":{\"title\":\"20 July 2018\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"168b451f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25c32b92\",\"elType\":\"widget\",\"settings\":{\"title\":\"By:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3097b923\",\"elType\":\"widget\",\"settings\":{\"title\":\"John Carter\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"744e88ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"71bd07d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resulotion:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d8f8912\",\"elType\":\"widget\",\"settings\":{\"title\":\"800x800\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"83c6a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"10124725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Video Quality:\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f91c437\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full HD\",\"header_size\":\"span\",\"title_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b1dc0cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"letter-spacing: -0.16px;\\\">Cupcake ipsum dolor sit amet souffl\\u00e9. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame souffl\\u00e9. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren\\u2019t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019r talking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr<\\/p>\\n<p style=\\\"letter-spacing: -0.16px;\\\">grip, Tarkin, the more star systems will slip throug what do you What!? I don\\u2019t know what you\\u2019rlking about. I amission to Alderaan good isif you ain\\u2019t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet souffl\\u00e9.<\\/p>\\n<p><img class=\\\"alignnone wp-image-685 size-full\\\" src=\\\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/pr_details2.jpg\\\" alt=\\\"\\\" width=\\\"670\\\" height=\\\"375\\\"><\\/p>\\n<p>cake jesms tiracroisnt. Chupa loream sesame amet souffl\\u00e9. I love liquorice oat cake jesms tira around to use Besid courage.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c8d3346\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"9f9e31a\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a55ef0c\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"0f2f310\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_primary_color\":\"#f7f7f7\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":10},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(9873,2019,'_thumbnail_id','109'),(9874,2019,'_dp_original','94'),(9875,2019,'_elementor_controls_usage','a:6:{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: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:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:28:\"space_between_widgets_tablet\";i:2;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_tablet\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";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:6:{s:5:\"align\";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_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9876,2019,'_wxr_import_has_attachment_refs','1'),(9877,2020,'_elementor_edit_mode','builder'),(9878,2020,'_elementor_template_type','wp-post'),(9879,2020,'_elementor_version','2.9.2'),(9880,2020,'_wp_page_template','default'),(9881,2020,'_elementor_data','[{\"id\":\"532b46da\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d430be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"2246312a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ef4d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"361f9eb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"bf00c81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"4ccf1d0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alan Fresco\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a86701\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"76b4d990\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"441ab2f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"213d7386\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3492613\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"75929a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"44ff9931\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9882,2020,'designation',''),(9883,2020,'_designation','field_5d12060eddf8a'),(9884,2020,'social_info_0_social_url','https://facebook.com'),(9885,2020,'_social_info_0_social_url','field_5d1207aaeca4f'),(9886,2020,'social_info_0_social_icon','fa-facebook'),(9887,2020,'_social_info_0_social_icon','field_5d120bdb011ca'),(9888,2020,'social_info_1_social_url','https://twitter.com'),(9889,2020,'_social_info_1_social_url','field_5d1207aaeca4f'),(9890,2020,'social_info_1_social_icon','fa-twitter'),(9891,2020,'_social_info_1_social_icon','field_5d120bdb011ca'),(9892,2020,'social_info_2_social_url','https://linkedin.com'),(9893,2020,'_social_info_2_social_url','field_5d1207aaeca4f'),(9894,2020,'social_info_2_social_icon','fa-linkedin'),(9895,2020,'_social_info_2_social_icon','field_5d120bdb011ca'),(9896,2020,'social_info','3'),(9897,2020,'_social_info','field_5d12064deca4e'),(9898,2020,'_dp_original','297'),(9899,2020,'_thumbnail_id','1110'),(9900,2020,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";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:5:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(9901,2020,'_wxr_import_has_attachment_refs','1'),(9902,2021,'_thumbnail_id','1116'),(9903,2021,'_elementor_edit_mode','builder'),(9904,2021,'_elementor_template_type','wp-post'),(9905,2021,'_elementor_version','2.9.2'),(9906,2021,'_wp_page_template','default'),(9907,2021,'_elementor_data','[{\"id\":\"3fac7401\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"63951475\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"1e8f003d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"60e24d8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"15e82706\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"626c0e4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"44023def\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sue Shei\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b3cdedb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6c61cd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"167cd116\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"329e2fa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e61e88f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4a3b3e0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3210d663\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"41\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9908,2021,'designation',''),(9909,2021,'_designation','field_5d12060eddf8a'),(9910,2021,'social_info_0_social_url','https://facebook.com'),(9911,2021,'_social_info_0_social_url','field_5d1207aaeca4f'),(9912,2021,'social_info_0_social_icon','fa-facebook'),(9913,2021,'_social_info_0_social_icon','field_5d120bdb011ca'),(9914,2021,'social_info_1_social_url','https://twitter.com'),(9915,2021,'_social_info_1_social_url','field_5d1207aaeca4f'),(9916,2021,'social_info_1_social_icon','fa-twitter'),(9917,2021,'_social_info_1_social_icon','field_5d120bdb011ca'),(9918,2021,'social_info_2_social_url','https://linkedin.com'),(9919,2021,'_social_info_2_social_url','field_5d1207aaeca4f'),(9920,2021,'social_info_2_social_icon','fa-linkedin'),(9921,2021,'_social_info_2_social_icon','field_5d120bdb011ca'),(9922,2021,'social_info','3'),(9923,2021,'_social_info','field_5d12064deca4e'),(9924,2021,'_dp_original','1052'),(9925,2021,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(9926,2021,'_wxr_import_has_attachment_refs','1'),(9927,2022,'_thumbnail_id','1117'),(9928,2022,'_elementor_edit_mode','builder'),(9929,2022,'_elementor_template_type','wp-post'),(9930,2022,'_elementor_version','2.9.2'),(9931,2022,'_wp_page_template','default'),(9932,2022,'_elementor_data','[{\"id\":\"55064824\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"204c8edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"2c522bdd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1edd6378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4678631e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"5d5b3035\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2a8772e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sir Cumference\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3a7c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"310740e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32ea8a9f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7501e2a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b849e2c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4b61fa50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4656f6c4\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9933,2022,'designation',''),(9934,2022,'_designation','field_5d12060eddf8a'),(9935,2022,'social_info_0_social_url','https://facebook.com'),(9936,2022,'_social_info_0_social_url','field_5d1207aaeca4f'),(9937,2022,'social_info_0_social_icon','fa-facebook'),(9938,2022,'_social_info_0_social_icon','field_5d120bdb011ca'),(9939,2022,'social_info_1_social_url','https://twitter.com'),(9940,2022,'_social_info_1_social_url','field_5d1207aaeca4f'),(9941,2022,'social_info_1_social_icon','fa-twitter'),(9942,2022,'_social_info_1_social_icon','field_5d120bdb011ca'),(9943,2022,'social_info_2_social_url','https://linkedin.com'),(9944,2022,'_social_info_2_social_url','field_5d1207aaeca4f'),(9945,2022,'social_info_2_social_icon','fa-linkedin'),(9946,2022,'_social_info_2_social_icon','field_5d120bdb011ca'),(9947,2022,'social_info','3'),(9948,2022,'_social_info','field_5d12064deca4e'),(9949,2022,'_dp_original','1052'),(9950,2022,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(9951,2022,'_wxr_import_has_attachment_refs','1'),(9952,2023,'_thumbnail_id','1118'),(9953,2023,'_elementor_edit_mode','builder'),(9954,2023,'_elementor_template_type','wp-post'),(9955,2023,'_elementor_version','2.9.2'),(9956,2023,'_wp_page_template','default'),(9957,2023,'_elementor_data','[{\"id\":\"72beb301\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e7aa0ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"27f4d2bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7bd3d471\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7f7b42\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"3ca28636\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"744b0425\",\"elType\":\"widget\",\"settings\":{\"title\":\"Valentino Morose\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b15ee1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e59a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4710808a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11bc0e0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b314889\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5698e39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b206611\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9958,2023,'designation',''),(9959,2023,'_designation','field_5d12060eddf8a'),(9960,2023,'social_info_0_social_url','https://facebook.com'),(9961,2023,'_social_info_0_social_url','field_5d1207aaeca4f'),(9962,2023,'social_info_0_social_icon','fa-facebook'),(9963,2023,'_social_info_0_social_icon','field_5d120bdb011ca'),(9964,2023,'social_info_1_social_url','https://twitter.com'),(9965,2023,'_social_info_1_social_url','field_5d1207aaeca4f'),(9966,2023,'social_info_1_social_icon','fa-twitter'),(9967,2023,'_social_info_1_social_icon','field_5d120bdb011ca'),(9968,2023,'social_info_2_social_url','https://linkedin.com'),(9969,2023,'_social_info_2_social_url','field_5d1207aaeca4f'),(9970,2023,'social_info_2_social_icon','fa-linkedin'),(9971,2023,'_social_info_2_social_icon','field_5d120bdb011ca'),(9972,2023,'social_info','3'),(9973,2023,'_social_info','field_5d12064deca4e'),(9974,2023,'_dp_original','1052'),(9975,2023,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(9976,2023,'_wxr_import_has_attachment_refs','1'),(9977,2024,'_thumbnail_id','1113'),(9978,2024,'_elementor_edit_mode','builder'),(9979,2024,'_elementor_template_type','wp-post'),(9980,2024,'_elementor_version','2.9.2'),(9981,2024,'_wp_page_template','default'),(9982,2024,'_elementor_data','[{\"id\":\"45db3f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"462b793\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"34bad0f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"31f16626\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5457a0e7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"6e3ab27a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2a796fa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Parsley Montana\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a65805b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2d89529f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3702decc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f7580f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"98749c4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"eba5668\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"720785e0\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(9983,2024,'designation',''),(9984,2024,'_designation','field_5d12060eddf8a'),(9985,2024,'social_info_0_social_url','https://facebook.com'),(9986,2024,'_social_info_0_social_url','field_5d1207aaeca4f'),(9987,2024,'social_info_0_social_icon','fa-facebook'),(9988,2024,'_social_info_0_social_icon','field_5d120bdb011ca'),(9989,2024,'social_info_1_social_url','https://twitter.com'),(9990,2024,'_social_info_1_social_url','field_5d1207aaeca4f'),(9991,2024,'social_info_1_social_icon','fa-twitter'),(9992,2024,'_social_info_1_social_icon','field_5d120bdb011ca'),(9993,2024,'social_info_2_social_url','https://linkedin.com'),(9994,2024,'_social_info_2_social_url','field_5d1207aaeca4f'),(9995,2024,'social_info_2_social_icon','fa-linkedin'),(9996,2024,'_social_info_2_social_icon','field_5d120bdb011ca'),(9997,2024,'social_info','3'),(9998,2024,'_social_info','field_5d12064deca4e'),(9999,2024,'_dp_original','1052'),(10000,2024,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(10001,2024,'_wxr_import_has_attachment_refs','1'),(10002,2025,'_wp_page_template','default'),(10003,2025,'_elementor_edit_mode','builder'),(10004,2025,'_elementor_template_type','wp-post'),(10005,2025,'_elementor_version','2.9.2'),(10006,2025,'post_views_count','11'),(10007,2025,'_elementor_data','[{\"id\":\"46a67e46\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f79f54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6741b23\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2809252d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"287fed69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-5.png\",\"id\":959},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262095e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT MARKETING\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c663592\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e9ab2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"26cb489d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c8a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"19d1642f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"69672683\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b5a2ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ddc40f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fac24c\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5134d6a6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27eea102\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"27b1e32d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"6604486d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2cda8ee9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"1468b4a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"159fa229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1035ead7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74409994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"786f379c\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d176c04\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c1004e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"3d169430\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c5d06ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"48625998\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"338e7fe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"29eb9ac2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8305586\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6b0a248c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"12d71c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"4f73013a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(10008,2025,'_thumbnail_id','959'),(10009,2025,'_dp_original','633'),(10010,2025,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(10011,2025,'_wxr_import_has_attachment_refs','1'),(10012,2026,'_wp_page_template','default'),(10013,2026,'_elementor_edit_mode','builder'),(10014,2026,'_elementor_template_type','wp-post'),(10015,2026,'_elementor_version','2.9.2'),(10016,2026,'post_views_count','11'),(10017,2026,'_elementor_data','[{\"id\":\"648e20cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"41c37536\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"98cf08e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"166141b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"518a46de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-4.png\",\"id\":961},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2ce6a0a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"PRODUCT DEVELOPMENT\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ce6d110\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"49171c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"57da619d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"125d12a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1d1005d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ed58672\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27cf78f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"267b7fdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5472f51\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f5c9c9e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"146cbd2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"459a2e68\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"2bd586ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"6ea46212\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"57942b8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76b232b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61ab3c97\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ddf182e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d84e475\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e48800e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b7bbf24\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"435c908c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"581f337\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"24fd38df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"69f95d01\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"42d51e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65ec09e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"16852a98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fbea3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"6bcc9ada\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(10018,2026,'_thumbnail_id','961'),(10019,2026,'_dp_original','633'),(10020,2026,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(10021,2026,'_wxr_import_has_attachment_refs','1'),(10022,2027,'_wp_page_template','default'),(10023,2027,'_elementor_edit_mode','builder'),(10024,2027,'_elementor_template_type','wp-post'),(10025,2027,'_elementor_version','2.9.2'),(10026,2027,'post_views_count','11'),(10027,2027,'_elementor_data','[{\"id\":\"74a62ff1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"726bb5ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5951a147\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33d1d58e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fc0011\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-3.png\",\"id\":962},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed62143\",\"elType\":\"widget\",\"settings\":{\"title\":\"WEB SOLUTIONS\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2273f7be\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479c9d19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"21759e47\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"60ee8882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"4502b1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5a780118\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8e2126\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55ffb6e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d4ae216\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"581fb7ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415d7b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8b16df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"28983aed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a953d57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"35b027fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c1b9830\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"17429f7b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2156c5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37a3d533\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e3d883\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7904098c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"58feb7d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"223dcddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"43309f75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4743358\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"104e2550\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7dd3cb0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6dff704a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2cf48e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"41e315c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(10028,2027,'_thumbnail_id','962'),(10029,2027,'_dp_original','633'),(10030,2027,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(10031,2027,'_wxr_import_has_attachment_refs','1'),(10032,2028,'_wp_page_template','default'),(10033,2028,'_elementor_edit_mode','builder'),(10034,2028,'_elementor_template_type','wp-post'),(10035,2028,'_elementor_version','2.9.2'),(10036,2028,'post_views_count','11'),(10037,2028,'_elementor_data','[{\"id\":\"30f20a48\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"303abe13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76a4e382\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cee16c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"98028a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-2.png\",\"id\":963},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"627ee9c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BRANDING & IDENTITY\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56235d6a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec3812d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"128386b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"156359ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"75439c74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"598343d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f530799\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f14fb8a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c8a74b0\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bfc00f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73141ac7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"195a48b9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"764c6a34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2b9344c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"3f47049e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"138595d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"533919ea\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c83bc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c7873b9\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29c85afa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48dd7acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"4fb8bfe3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78b336bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"751046f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"200a7243\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"59a087f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"41f5c20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"40ae20d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c7e4a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"1110fa0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(10038,2028,'_thumbnail_id','963'),(10039,2028,'_dp_original','633'),(10040,2028,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:4:{s:18:\"f_icon_hover_color\";i:1;s:18:\"t_icon_hover_color\";i:1;s:18:\"p_icon_hover_color\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(10041,2028,'_wxr_import_has_attachment_refs','1'),(10042,2029,'_wp_page_template','default'),(10043,2029,'_elementor_edit_mode','builder'),(10044,2029,'_elementor_template_type','wp-post'),(10045,2029,'_elementor_version','2.9.2'),(10046,2029,'post_views_count','11'),(10047,2029,'_elementor_data','[{\"id\":\"4c113b7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cccafb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"padding\":{\"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},\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37212b33\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"margin\":{\"unit\":\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"939d4be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1115261c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/cap-1.png\",\"id\":964},\"align\":\"left\",\"image_size\":\"full\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6933b9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"UNIQUE DESIGN\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2133d0ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"722e1a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.36399999999999721467247582040727138519287109375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3843e9e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Owner:<\\/li><li>livery Time:<\\/li><li>Service Cost:<\\/li><li>Quality:<\\/li><\\/ul>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"619f9ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.60199999999999675992512493394315242767333984375,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7253494a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li style=\\\"text-align: left;\\\">John Clark<\\/li><li style=\\\"text-align: left;\\\">2 Working Days<\\/li><li style=\\\"text-align: left;\\\">$220<\\/li><li style=\\\"text-align: left;\\\">High<\\/li><\\/ul>\",\"align\":\"right\",\"text_color\":\"#898989\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37553a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58.33200000000000073896444519050419330596923828125,\"space_between_widgets\":0,\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f938958\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_details.jpg\",\"id\":628},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"35f1624b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.<\\/p><p><span style=\\\"letter-spacing: -0.16px;\\\">A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.1600000000000000033306690738754696212708950042724609375,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c8a6e6b\",\"elType\":\"widget\",\"settings\":{\"f_icon_hover_color\":\"#FFFFFF\",\"t_icon_bg\":\"#1DA1F2\",\"t_icon_hover_color\":\"#FFFFFF\",\"p_icon_bg\":\"#EE1B22\",\"p_icon_hover_color\":\"#FFFFFF\",\"l_icon_bg\":\"#0077B5\",\"l_icon_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"zix_social_share\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11988544\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c32a717\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"42b26483\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"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\":\"199e8dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"68f7f6f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Process\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"3e5cb90d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1be41042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"20c62575\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"688ae098\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d761aae\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"a35fcee\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"e345c19\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"7e0b08e\"}],\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dabd33e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e72b00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"516dd127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_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},\"_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\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3daac532\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"3f4bcab1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4380cbe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6eb3661c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"44fc4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6b9090c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a0cd972\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color\":\"rgba(0, 0, 0, 0.1)\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#F8F8F9\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"588f9d84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\",\"css_filters_hover_css_filter\":\"custom\",\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(10048,2029,'_thumbnail_id','964'),(10049,2029,'_dp_original','633'),(10050,2029,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:2;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:15:\"_padding_mobile\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;s:28:\"css_filters_hover_css_filter\";i:5;s:28:\"css_filters_hover_brightness\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_mobile\";i:2;s:21:\"space_between_widgets\";i:3;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:35:\"background_overlay_hover_background\";i:5;s:30:\"background_overlay_hover_color\";i:5;s:32:\"background_overlay_hover_opacity\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:9;s:13:\"margin_mobile\";i:4;s:14:\"padding_mobile\";i:8;s:14:\"padding_tablet\";i:8;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:3;s:3:\"gap\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:14:\"padding_mobile\";i:6;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"zix_social_share\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"social_share_sec\";a:7:{s:18:\"f_icon_hover_color\";i:1;s:9:\"t_icon_bg\";i:1;s:18:\"t_icon_hover_color\";i:1;s:9:\"p_icon_bg\";i:1;s:18:\"p_icon_hover_color\";i:1;s:9:\"l_icon_bg\";i:1;s:18:\"l_icon_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}}'),(10051,2029,'_wxr_import_has_attachment_refs','1'),(10052,2030,'_thumbnail_id','340'),(10053,2030,'_elementor_edit_mode','builder'),(10054,2030,'_elementor_template_type','wp-post'),(10055,2030,'_elementor_version','2.9.2'),(10056,2030,'_wp_page_template','default'),(10057,2030,'_elementor_data','[{\"id\":\"492b8dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"f81394f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cd05d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2347edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"677076b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"ff8cd68\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rodney Artichoke\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a60e4a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dfde2b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb55b0f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71b9839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31109fb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"917f803\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3d4e9c1\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}],\"_margin_mobile\":{\"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\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}],\"_margin_mobile\":{\"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\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"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\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_subtitle_typography\":\"custom\",\"typography_subtitle_font_family\":\"Montserrat\",\"typography_subtitle_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(10058,2030,'designation',''),(10059,2030,'_designation','field_5d12060eddf8a'),(10060,2030,'social_info_0_social_url','https://facebook.com'),(10061,2030,'_social_info_0_social_url','field_5d1207aaeca4f'),(10062,2030,'social_info_0_social_icon','fa-facebook'),(10063,2030,'_social_info_0_social_icon','field_5d120bdb011ca'),(10064,2030,'social_info_1_social_url','https://twitter.com'),(10065,2030,'_social_info_1_social_url','field_5d1207aaeca4f'),(10066,2030,'social_info_1_social_icon','fa-twitter'),(10067,2030,'_social_info_1_social_icon','field_5d120bdb011ca'),(10068,2030,'social_info_2_social_url','https://linkedin.com'),(10069,2030,'_social_info_2_social_url','field_5d1207aaeca4f'),(10070,2030,'social_info_2_social_icon','fa-linkedin'),(10071,2030,'_social_info_2_social_icon','field_5d120bdb011ca'),(10072,2030,'social_info','3'),(10073,2030,'_social_info','field_5d12064deca4e'),(10074,2030,'_dp_original','1052'),(10075,2030,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:2;}}}}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:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:3:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}s:14:\"style_subtitle\";a:3:{s:30:\"typography_subtitle_typography\";i:1;s:31:\"typography_subtitle_font_family\";i:1;s:36:\"typography_subtitle_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}}'),(10076,2030,'_wxr_import_has_attachment_refs','1'),(10077,2031,'_thumbnail_id','1113'),(10078,2031,'_elementor_edit_mode','builder'),(10079,2031,'_elementor_template_type','wp-post'),(10080,2031,'_elementor_version','2.9.2'),(10081,2031,'_wp_page_template','default'),(10082,2031,'_elementor_data','[{\"id\":\"53d2d3ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f0e262b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"4a059577\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e056fa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4443686f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"326a98f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"72ed4822\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nathaneal Down\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10ea67d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"659a451a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3684749\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"669ebe1e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"55e81a87\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"39185bf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"64b2201e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(10083,2031,'designation',''),(10084,2031,'_designation','field_5d12060eddf8a'),(10085,2031,'social_info_0_social_url','https://facebook.com'),(10086,2031,'_social_info_0_social_url','field_5d1207aaeca4f'),(10087,2031,'social_info_0_social_icon','fa-facebook'),(10088,2031,'_social_info_0_social_icon','field_5d120bdb011ca'),(10089,2031,'social_info_1_social_url','https://twitter.com'),(10090,2031,'_social_info_1_social_url','field_5d1207aaeca4f'),(10091,2031,'social_info_1_social_icon','fa-twitter'),(10092,2031,'_social_info_1_social_icon','field_5d120bdb011ca'),(10093,2031,'social_info_2_social_url','https://linkedin.com'),(10094,2031,'_social_info_2_social_url','field_5d1207aaeca4f'),(10095,2031,'social_info_2_social_icon','fa-linkedin'),(10096,2031,'_social_info_2_social_icon','field_5d120bdb011ca'),(10097,2031,'social_info','3'),(10098,2031,'_social_info','field_5d12064deca4e'),(10099,2031,'_dp_original','1052'),(10100,2031,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";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:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(10101,2031,'_wxr_import_has_attachment_refs','1'),(10102,2032,'_thumbnail_id','1112'),(10103,2032,'_elementor_edit_mode','builder'),(10104,2032,'_elementor_template_type','wp-post'),(10105,2032,'_elementor_version','2.9.2'),(10106,2032,'_wp_page_template','default'),(10107,2032,'_elementor_data','[{\"id\":\"4844fb68\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b75a433\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"301991d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7df9042c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a999527\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"78858a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6d74794f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jim S\\u00e9chen\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a2134fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6ffb2ec7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e555089\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14417664\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2660b524\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"25173070\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"1973d254\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(10108,2032,'designation',''),(10109,2032,'_designation','field_5d12060eddf8a'),(10110,2032,'social_info_0_social_url','https://facebook.com'),(10111,2032,'_social_info_0_social_url','field_5d1207aaeca4f'),(10112,2032,'social_info_0_social_icon','fa-facebook'),(10113,2032,'_social_info_0_social_icon','field_5d120bdb011ca'),(10114,2032,'social_info_1_social_url','https://twitter.com'),(10115,2032,'_social_info_1_social_url','field_5d1207aaeca4f'),(10116,2032,'social_info_1_social_icon','fa-twitter'),(10117,2032,'_social_info_1_social_icon','field_5d120bdb011ca'),(10118,2032,'social_info_2_social_url','https://linkedin.com'),(10119,2032,'_social_info_2_social_url','field_5d1207aaeca4f'),(10120,2032,'social_info_2_social_icon','fa-linkedin'),(10121,2032,'_social_info_2_social_icon','field_5d120bdb011ca'),(10122,2032,'social_info','3'),(10123,2032,'_social_info','field_5d12064deca4e'),(10124,2032,'_dp_original','1052'),(10125,2032,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;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:13:\"content_width\";i:1;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:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;}}}}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:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(10126,2032,'_wxr_import_has_attachment_refs','1'),(10127,2033,'_thumbnail_id','1114'),(10128,2033,'_elementor_edit_mode','builder'),(10129,2033,'_elementor_template_type','wp-post'),(10130,2033,'_elementor_version','2.9.2'),(10131,2033,'_wp_page_template','default'),(10132,2033,'_elementor_data','[{\"id\":\"5701b3d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"24e9ff24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"247c3835\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"57a14dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"49acbd29\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"48d5aa7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6fefafab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lance Bogrol\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b68792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42b598fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55522ea3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73a367ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34ab4f12\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"528e002a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"42876765\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"space_between_widgets_mobile\":0,\"margin_mobile\":{\"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\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(10133,2033,'designation',''),(10134,2033,'_designation','field_5d12060eddf8a'),(10135,2033,'social_info_0_social_url','https://facebook.com'),(10136,2033,'_social_info_0_social_url','field_5d1207aaeca4f'),(10137,2033,'social_info_0_social_icon','fa-facebook'),(10138,2033,'_social_info_0_social_icon','field_5d120bdb011ca'),(10139,2033,'social_info_1_social_url','https://twitter.com'),(10140,2033,'_social_info_1_social_url','field_5d1207aaeca4f'),(10141,2033,'social_info_1_social_icon','fa-twitter'),(10142,2033,'_social_info_1_social_icon','field_5d120bdb011ca'),(10143,2033,'social_info_2_social_url','https://linkedin.com'),(10144,2033,'_social_info_2_social_url','field_5d1207aaeca4f'),(10145,2033,'social_info_2_social_icon','fa-linkedin'),(10146,2033,'_social_info_2_social_icon','field_5d120bdb011ca'),(10147,2033,'social_info','3'),(10148,2033,'_social_info','field_5d12064deca4e'),(10149,2033,'_dp_original','1052'),(10150,2033,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;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:13:\"content_width\";i:1;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:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(10151,2033,'_wxr_import_has_attachment_refs','1'),(10152,2034,'_thumbnail_id','1111'),(10153,2034,'_elementor_edit_mode','builder'),(10154,2034,'_elementor_template_type','wp-post'),(10155,2034,'_elementor_version','2.9.2'),(10156,2034,'_wp_page_template','default'),(10157,2034,'_elementor_data','[{\"id\":\"3bf81093\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"36\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"326103b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.683999999999997498889570124447345733642578125},\"elements\":[{\"id\":\"629cf2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/team-details.png\",\"id\":1069},\"image_size\":\"full\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"104a0959\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.316000000000002501110429875552654266357421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"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},\"space_between_widgets_tablet\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"542b60e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"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\":\"438a3e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"7095e9a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Giles Posture\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f4cad80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"header_size\":\"p\",\"title_color\":\"#848484\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7714b98c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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},\"_inline_size_tablet\":40,\"content_position_tablet\":\"center\",\"space_between_widgets_tablet\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"577c405d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b9cfeb8\",\"link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"6808d4d\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\",\"_id\":\"a71eac5\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_primary_color\":\"#f8f8f8\",\"icon_secondary_color\":\"#333333\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hover_primary_color\":\"#fe4ba9\",\"hover_secondary_color\":\"#ffffff\",\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_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\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"31c00b5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69a67242\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"622b55c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"64ee3374\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Contact Us\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"zix_btn_color\":\"#FFFFFF\",\"zix_btn_background\":\"#2A2273\"},\"elements\":[],\"widgetType\":\"zix-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12f9a7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e2f3cc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"7582f4e\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"},{\"id\":\"61ba65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/service_dot.png\",\"id\":57},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-591,\"unit\":\"px\"},\"_offset_y\":{\"size\":-9,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f530ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"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},\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"8c99ce3\",\"elType\":\"widget\",\"settings\":{\"progressbar\":[{\"title\":\"Education\",\"percentage\":\"70\",\"_id\":\"c3879d4\"},{\"title\":\"Thinking\",\"percentage\":\"45\",\"_id\":\"8921e87\"},{\"title\":\"Ideas\",\"percentage\":\"23\",\"_id\":\"a15ddbd\"}]},\"elements\":[],\"widgetType\":\"zix-progress-bar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f90154\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"c367b91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e04bf8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"The Experts Team\",\"subtitle_text\":\"TEAM MEMBERS\",\"btn_title\":\"Meet All Members\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"post_count\":10,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"left_object\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/mamphis_three.png\",\"id\":436},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"team\"}],\"isInner\":false}],\"isInner\":false}]'),(10158,2034,'designation',''),(10159,2034,'_designation','field_5d12060eddf8a'),(10160,2034,'social_info_0_social_url','https://facebook.com'),(10161,2034,'_social_info_0_social_url','field_5d1207aaeca4f'),(10162,2034,'social_info_0_social_icon','fa-facebook'),(10163,2034,'_social_info_0_social_icon','field_5d120bdb011ca'),(10164,2034,'social_info_1_social_url','https://twitter.com'),(10165,2034,'_social_info_1_social_url','field_5d1207aaeca4f'),(10166,2034,'social_info_1_social_icon','fa-twitter'),(10167,2034,'_social_info_1_social_icon','field_5d120bdb011ca'),(10168,2034,'social_info_2_social_url','https://linkedin.com'),(10169,2034,'_social_info_2_social_url','field_5d1207aaeca4f'),(10170,2034,'social_info_2_social_icon','fa-linkedin'),(10171,2034,'_social_info_2_social_icon','field_5d120bdb011ca'),(10172,2034,'social_info','3'),(10173,2034,'_social_info','field_5d12064deca4e'),(10174,2034,'_dp_original','1052'),(10175,2034,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;s:23:\"content_position_tablet\";i:1;s:28:\"space_between_widgets_tablet\";i:2;s:28:\"space_between_widgets_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:5;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:16:\"icon_size_tablet\";i:1;s:19:\"icon_padding_tablet\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;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:13:\"content_width\";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:2;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;}}}}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:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";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:10:\"zix-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:12:\"button_label\";i:1;s:10:\"button_url\";i:1;}}s:5:\"style\";a:1:{s:20:\"button_style_section\";a:2:{s:13:\"zix_btn_color\";i:1;s:18:\"zix_btn_background\";i:1;}}}}s:16:\"zix-progress-bar\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"progress_bar_sec\";a:1:{s:11:\"progressbar\";i:2;}}}}s:4:\"team\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:9:\"title_sec\";a:2:{s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:6:\"filter\";a:1:{s:10:\"post_count\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:28:\"typography_title_line_height\";i:1;s:33:\"typography_title_font_size_mobile\";i:1;}s:13:\"style_section\";a:1:{s:11:\"left_object\";i:1;}}}}}'),(10176,2034,'_wxr_import_has_attachment_refs','1'),(10179,2036,'_form','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),(10180,2036,'_mail','a:8:{s:7:\"subject\";s:30:\"tropofoto.com \"[your-subject]\"\";s:6:\"sender\";s:34:\"tropofoto.com <[email protected]>\";s:4:\"body\";s:172:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on tropofoto.com (http://tropofoto.com)\";s:9:\"recipient\";s:18:\"[email protected]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(10181,2036,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"tropofoto.com \"[your-subject]\"\";s:6:\"sender\";s:34:\"tropofoto.com <[email protected]>\";s:4:\"body\";s:114:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on tropofoto.com (http://tropofoto.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:28:\"Reply-To: [email protected]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(10182,2036,'_messages','a:8:{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.\";}'),(10183,2036,'_additional_settings',NULL),(10184,2036,'_locale','en_US'),(10185,2037,'_wp_attached_file','2020/10/log_file_2020-10-13__12-13-30.txt'),(10196,2038,'_menu_item_type','post_type'),(10197,2038,'_menu_item_menu_item_parent','0'),(10198,2038,'_menu_item_object_id','215'),(10199,2038,'_menu_item_object','page'),(10200,2038,'_menu_item_target',''),(10201,2038,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10202,2038,'_menu_item_xfn',''),(10203,2038,'_menu_item_url',''),(10204,2038,'_elementor_controls_usage','a:0:{}'),(10276,883,'_menu_item_type','post_type'),(10277,883,'_menu_item_menu_item_parent','0'),(10278,883,'_menu_item_object_id','850'),(10279,883,'_menu_item_object','page'),(10280,883,'_menu_item_target',''),(10281,883,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10282,883,'_menu_item_xfn',''),(10283,883,'_menu_item_url',''),(10284,883,'_elementor_controls_usage','a:0:{}'),(10336,8,'page_header','0'),(10337,8,'_page_header','field_5d16fe3c6a7d8'),(10338,8,'header_image',''),(10339,8,'_header_image','field_5d1af4724fcaa'),(10340,8,'menu_styles','1'),(10341,8,'_menu_styles','field_5d22ebd1e717d'),(10342,8,'default_menu_color',''),(10343,8,'_default_menu_color','field_5d22eb83c21f9'),(10344,8,'sticky_menu_color',''),(10345,8,'_sticky_menu_color','field_5d22ec2924d1c'),(10346,8,'select_footer_style','1'),(10347,8,'_select_footer_style','field_5d330a7354bf9'),(10348,8,'footer_style','1'),(10349,8,'_footer_style','field_5d1707be597d3'),(10350,8,'page_comment','0'),(10351,8,'_page_comment','field_5d22cc36e1763'),(10352,8,'_elementor_edit_mode','builder'),(10353,8,'_elementor_template_type','wp-page'),(10354,8,'_elementor_version','3.0.11'),(10355,8,'is_banner','0'),(10356,8,'_is_banner','field_5bcf1c8eb4909'),(10357,8,'background_image',''),(10358,8,'_background_image','field_5c04cc6216add'),(10359,8,'banner_settings',''),(10360,8,'_banner_settings','field_5c0e3bb80c488'),(10361,8,'header_style','default'),(10362,8,'_header_style','field_5c4fea89283cc'),(10363,8,'menu_alignment','right'),(10364,8,'_menu_alignment','field_menu_alignment'),(10365,8,'is_menu_color_menu_item_color',''),(10366,8,'_is_menu_color_menu_item_color','field_5c07ae546869d'),(10367,8,'is_menu_color_menu_item_active_color',''),(10368,8,'_is_menu_color_menu_item_active_color','field_5c49a03e7a579'),(10369,8,'is_menu_color_sticky_menu_color',''),(10370,8,'_is_menu_color_sticky_menu_color','field_5c07aed546869d'),(10371,8,'is_menu_color_sticky_menu_active_color',''),(10372,8,'_is_menu_color_sticky_menu_active_color','field_5c49adf465s579'),(10373,8,'is_menu_color',''),(10374,8,'_is_menu_color','field_5ca46df638e6b'),(10375,8,'reverse_logo','0'),(10376,8,'_reverse_logo','field_5c07ae5e6869e'),(10377,8,'is_minicart','1'),(10378,8,'_is_minicart','field_minicart_sec'),(10379,8,'mini_cart_cart_color',''),(10380,8,'_mini_cart_cart_color','field_5ca46e8e38e6d'),(10381,8,'mini_cart_count_text_color',''),(10382,8,'_mini_cart_count_text_color','field_5ca46e0838e6c'),(10383,8,'mini_cart_sticky_cart_color',''),(10384,8,'_mini_cart_sticky_cart_color','field_d5d5d8f6f3ddv'),(10385,8,'mini_cart_sticky_count_text_color',''),(10386,8,'_mini_cart_sticky_count_text_color','field_5ca46e08d5d5t4c'),(10387,8,'mini_cart',''),(10388,8,'_mini_cart','field_5ca46de838e6b'),(10389,8,'header_settings',''),(10390,8,'_header_settings','field_5c0e3c4487352'),(10391,8,'footer_visibility','1'),(10392,8,'_footer_visibility','field_5c3483a3d804a'),(10393,8,'page_footer_style',''),(10394,8,'_page_footer_style','field_fddooter_layout'),(10395,8,'footer_bg_color',''),(10396,8,'_footer_bg_color','field_footer_bg_color'),(10397,8,'footer_object_visibility','1'),(10398,8,'_footer_object_visibility','field_footer_object'),(10399,8,'footer_widgets_color',''),(10400,8,'_footer_widgets_color','field_footer_widgets_color'),(10401,8,'footer_widgets_hover_color',''),(10402,8,'_footer_widgets_hover_color','field_footer_widgets_hover_color'),(10403,8,'footer_widgets_title_color',''),(10404,8,'_footer_widgets_title_color','field_footer_widgets_title_color'),(10405,8,'social_icon_hover_color',''),(10406,8,'_social_icon_hover_color','field_footer_social_hover_color'),(10407,8,'footer',''),(10408,8,'_footer','field_5c485c048e4d0'),(10409,8,'page_content_padding_padding_top',''),(10410,8,'_page_content_padding_padding_top','field_5c0795e6ec3c7'),(10411,8,'page_content_padding_padding_bottom',''),(10412,8,'_page_content_padding_padding_bottom','field_5c079657ec3c8'),(10413,8,'page_content_padding',''),(10414,8,'_page_content_padding','field_5c079574ec3c6'),(10415,8,'background_color',''),(10416,8,'_background_color','field_5c0796a6ec3c9'),(10417,8,'page_settings',''),(10418,8,'_page_settings','field_5c0e3c8593617'),(10419,8,'customize_the_button','0'),(10420,8,'_customize_the_button','field_5c4d4e8206c93'),(10421,8,'action_button',''),(10422,8,'_action_button','field_5c4d48056158d'),(10423,8,'_wp_page_template','elementor_header_footer'),(10424,8,'_elementor_data','[{\"id\":\"204752d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"48ea8ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"95bc85f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Most Tropical Looking Casino?\",\"subtitle\":\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\",\"description\":\"Spend a penny bamboozled the little rotter cuppa grub my good sir I don\'t want no agro.\",\"health_login_text\":\"Already have an account?\",\"health_login_button_text\":\"Login\",\"btn_label2\":\"Start 14 day Trial\",\"email_placeholder\":\"Enter your work email\",\"btn_label\":\"\",\"video_play_label\":\"Watch Video\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino.png\",\"id\":2128},\"objebt_img1\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-dice.png\",\"id\":2132},\"hero_background_background\":\"classic\",\"hero_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/home-01.jpg\",\"id\":17},\"title_part1\":\"Awesome & Creative\",\"bg_text\":\"P\",\"title_array\":[],\"slide_items\":[]},\"elements\":[],\"widgetType\":\"zix-hero\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94d60dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"9d1eaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"712bfaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Casino Photography\",\"subtitle\":\"\",\"description\":\"Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.\",\"btn_label\":\"Contact Us\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\",\"id\":2076},\"objebt_text\":\" <span>Explore <\\/span> 15+ <span>Casino<\\/span>\",\"objebt_img1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/dot.png\",\"id\":37},\"bg_shape_right\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_one.png\",\"id\":417},\"bg_shape_left\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_two.png\",\"id\":416},\"title_text\":\"The Experts Team\",\"show_title\":\"\",\"btn_url\":{\"url\":\"http:\\/\\/tropofoto.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"carousel_item\":[]},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2294dcb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"2210e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee45dfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Access To Great Features\",\"btn_label\":\"\",\"titlebefore\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/promo.png\",\"id\":64},\"shape_2\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2019\\/12\\/circle_img.png\",\"id\":63}},\"elements\":[],\"widgetType\":\"zix-c2a\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524954d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e807b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ad92e97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fine Quality Casino Photos Customised For You\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8591ade\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"p\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576225a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5686199\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2091,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\"},{\"id\":2090,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\"},{\"id\":2095,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/gwjdsL.jpg\"},{\"id\":2092,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/plazafremont-1.jpg\"}],\"thumbnail_size\":\"zix-blog-shortcode-big\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0f2d392\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Sign up and check free\",\"highlighted_text\":\"casino photography\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \",\"tag\":\"span\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"400\",\"__dynamic__\":[],\"__globals__\":{\"title_typography_typography\":\"\",\"words_typography_typography\":\"globals\\/typography?id=text\",\"words_color\":\"\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cba289\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1206525\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bcfef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\",\"id\":2112},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(10425,8,'_custom_page_options','a:9:{s:14:\"section_1_text\";s:0:\"\";s:18:\"section_1_textarea\";s:0:\"\";s:16:\"section_1_upload\";s:0:\"\";s:24:\"section_2_color_picker_1\";s:7:\"#2ecc71\";s:24:\"section_2_color_picker_2\";s:7:\"#3498db\";s:24:\"section_2_color_picker_3\";s:7:\"#9b59b6\";s:24:\"section_2_color_picker_4\";s:7:\"#34495e\";s:24:\"section_2_color_picker_5\";s:7:\"#e67e22\";s:18:\"section_1_switcher\";b:0;}'),(10426,8,'_custom_page_side_options','a:3:{s:22:\"section_3_image_select\";s:7:\"value-2\";s:14:\"section_3_text\";s:0:\"\";s:18:\"section_3_switcher\";b:1;}'),(10427,8,'page_logo',''),(10428,8,'_page_logo','field_5c07adf5069e'),(10429,8,'headersticky_logo',''),(10430,8,'_headersticky_logo','field_5c07sd05069e'),(10431,8,'is_header_top','0'),(10432,8,'_is_header_top','field_5c07ae5e0054s'),(10433,8,'always_sticky','0'),(10434,8,'_always_sticky','field_5cdf45e0054s'),(10435,8,'menu_style','style_1'),(10436,8,'_menu_style','field_menu_style'),(10437,8,'main_logo_dimension_logo_pt','0'),(10438,8,'_main_logo_dimension_logo_pt','field_5c0795sc3c7'),(10439,8,'main_logo_dimension_logo_pr',''),(10440,8,'_main_logo_dimension_logo_pr','field_5c0dfsd7ec3c8'),(10441,8,'main_logo_dimension_logo_pb','0'),(10442,8,'_main_logo_dimension_logo_pb','field_5dfdfsd7ec3c8'),(10443,8,'main_logo_dimension_logo_pl',''),(10444,8,'_main_logo_dimension_logo_pl','field_5dfdfsd7ecd58'),(10445,8,'main_logo_dimension',''),(10446,8,'_main_logo_dimension','field_5c07ga4ec3c6'),(10447,8,'sticky_logo_dimension_sticky_logo_pt','0'),(10448,8,'_sticky_logo_dimension_sticky_logo_pt','field_5c079df43c7'),(10449,8,'sticky_logo_dimension_sticky_logo_pr',''),(10450,8,'_sticky_logo_dimension_sticky_logo_pr','field_5c0dddd7ec3c8'),(10451,8,'sticky_logo_dimension_sticky_logo_pb','0'),(10452,8,'_sticky_logo_dimension_sticky_logo_pb','field_5dfdfsd7ds3c8'),(10453,8,'sticky_logo_dimension_sticky_logo_pl',''),(10454,8,'_sticky_logo_dimension_sticky_logo_pl','field_5dfdfsd7df58'),(10455,8,'sticky_logo_dimension',''),(10456,8,'_sticky_logo_dimension','field_5c07ga43c6'),(10458,8,'_wxr_import_has_attachment_refs','1'),(10539,215,'page_header','1'),(10540,215,'_page_header','field_5d16fe3c6a7d8'),(10541,215,'header_image',''),(10542,215,'_header_image','field_5d1af4724fcaa'),(10543,215,'menu_styles','0'),(10544,215,'_menu_styles','field_5d22ebd1e717d'),(10545,215,'select_footer_style','0'),(10546,215,'_select_footer_style','field_5d330a7354bf9'),(10547,215,'page_comment','0'),(10548,215,'_page_comment','field_5d22cc36e1763'),(10549,215,'_elementor_edit_mode','builder'),(10550,215,'_elementor_template_type','wp-page'),(10551,215,'_elementor_version','2.9.2'),(10552,215,'_wp_page_template','elementor_header_footer'),(10553,215,'_elementor_data','[{\"id\":\"196679d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b009ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31cc19f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT INFO\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"76362c9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Details\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8a79c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4996421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58807be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(2,0,67,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"58\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bbfb0d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/phone.png\",\"id\":491},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f5f99cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone Number\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50ca9e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"tell:1234567890\\\">+(123) 456 7890<\\/a><br \\/><a href=\\\"tell:1234567890\\\">+(123) 456 7890<\\/a><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38bbe27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(2,0,67,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"58\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a809e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/email.png\",\"id\":490},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"96732f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email Address\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3871f38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"mailto:[email protected]\\\">[email protected]<\\/a><br \\/><a href=\\\"mailto:[email protected]\\\">[email protected]<\\/a><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d063d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(2,0,67,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"58\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a29c1a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/place.png\",\"id\":492},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d51a749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Location\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb95197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/goo.gl\\/maps\\/orpBuVwk6aaDTURx7\\\">123 New York E Block 12670,<\\/a><br \\/><a href=\\\"https:\\/\\/goo.gl\\/maps\\/orpBuVwk6aaDTURx7\\\">Street 2101 USA<\\/a><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f259b4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"4fce93b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bda6e5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#e5e5e5\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91809b6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a376be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"c0bfabe\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT US\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"60a8f33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Form\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"9c59f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81fca16\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":970,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"597618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"675c137\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"6\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8589a7c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"0985909\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"107d995\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":440,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(10554,215,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:4;s:22:\"typography_line_height\";i:7;s:25:\"typography_letter_spacing\";i:4;s:27:\"typography_font_size_mobile\";i:4;s:29:\"typography_line_height_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:4;s:14:\"_margin_mobile\";i:4;s:15:\"_padding_mobile\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;s:5:\"align\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:21:\"space_between_widgets\";i:2;s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:6:\"margin\";i:3;s:7:\"padding\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:6;s:13:\"content_width\";i:3;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:4;s:14:\"padding_mobile\";i:3;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:3:\"gap\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:4:{s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:28:\"css_filters_hover_css_filter\";i:1;s:16:\"hover_transition\";i:1;}}}}}'),(10555,215,'_wxr_import_has_attachment_refs','1'),(10637,2044,'_elementor_controls_usage','a:0:{}'),(10638,2044,'page_header','1'),(10639,2044,'_page_header','field_5d16fe3c6a7d8'),(10640,2044,'header_image',''),(10641,2044,'_header_image','field_5d1af4724fcaa'),(10642,2044,'menu_styles','0'),(10643,2044,'_menu_styles','field_5d22ebd1e717d'),(10644,2044,'select_footer_style','0'),(10645,2044,'_select_footer_style','field_5d330a7354bf9'),(10646,2044,'page_comment','0'),(10647,2044,'_page_comment','field_5d22cc36e1763'),(10648,2044,'is_banner','0'),(10649,2044,'_is_banner','field_5bcf1c8eb4909'),(10650,2044,'banner_settings',''),(10651,2044,'_banner_settings','field_5c0e3bb80c488'),(10652,2044,'header_style','default'),(10653,2044,'_header_style','field_5c4fea89283cc'),(10654,2044,'menu_alignment','right'),(10655,2044,'_menu_alignment','field_menu_alignment'),(10656,2044,'is_menu_color_menu_item_color',''),(10657,2044,'_is_menu_color_menu_item_color','field_5c07ae546869d'),(10658,2044,'is_menu_color_menu_item_active_color',''),(10659,2044,'_is_menu_color_menu_item_active_color','field_5c49a03e7a579'),(10660,2044,'is_menu_color_sticky_menu_color',''),(10661,2044,'_is_menu_color_sticky_menu_color','field_5c07aed546869d'),(10662,2044,'is_menu_color_sticky_menu_active_color',''),(10663,2044,'_is_menu_color_sticky_menu_active_color','field_5c49adf465s579'),(10664,2044,'is_menu_color',''),(10665,2044,'_is_menu_color','field_5ca46df638e6b'),(10666,2044,'reverse_logo','0'),(10667,2044,'_reverse_logo','field_5c07ae5e6869e'),(10668,2044,'header_settings',''),(10669,2044,'_header_settings','field_5c0e3c4487352'),(10670,2044,'footer_visibility','1'),(10671,2044,'_footer_visibility','field_5c3483a3d804a'),(10672,2044,'footer_bg_color',''),(10673,2044,'_footer_bg_color','field_footer_bg_color'),(10674,2044,'footer_widgets_color',''),(10675,2044,'_footer_widgets_color','field_footer_widgets_color'),(10676,2044,'footer_widgets_hover_color',''),(10677,2044,'_footer_widgets_hover_color','field_footer_widgets_hover_color'),(10678,2044,'footer_widgets_title_color',''),(10679,2044,'_footer_widgets_title_color','field_footer_widgets_title_color'),(10680,2044,'social_icon_hover_color',''),(10681,2044,'_social_icon_hover_color','field_footer_social_hover_color'),(10682,2044,'footer',''),(10683,2044,'_footer','field_5c485c048e4d0'),(10684,2044,'page_content_padding_padding_top',''),(10685,2044,'_page_content_padding_padding_top','field_5c0795e6ec3c7'),(10686,2044,'page_content_padding_padding_bottom',''),(10687,2044,'_page_content_padding_padding_bottom','field_5c079657ec3c8'),(10688,2044,'page_content_padding',''),(10689,2044,'_page_content_padding','field_5c079574ec3c6'),(10690,2044,'background_color',''),(10691,2044,'_background_color','field_5c0796a6ec3c9'),(10692,2044,'page_settings',''),(10693,2044,'_page_settings','field_5c0e3c8593617'),(11058,850,'is_banner','1'),(11059,850,'_is_banner','field_5bcf1c8eb4909'),(11060,850,'header_image',''),(11061,850,'_header_image','field_5c04cc6216add'),(11062,850,'banner_settings',''),(11063,850,'_banner_settings','field_5c0e3bb80c488'),(11064,850,'page_logo',''),(11065,850,'_page_logo','field_5c07adf5069e'),(11066,850,'headersticky_logo',''),(11067,850,'_headersticky_logo','field_5c07sd05069e'),(11068,850,'menu_alignment','right'),(11069,850,'_menu_alignment','field_menu_alignment'),(11070,850,'is_header_top','0'),(11071,850,'_is_header_top','field_5c07ae5e0054s'),(11072,850,'always_sticky','0'),(11073,850,'_always_sticky','field_5cdf45e0054s'),(11074,850,'is_menu_color_menu_item_color',''),(11075,850,'_is_menu_color_menu_item_color','field_5c07ae546869d'),(11076,850,'is_menu_color_menu_item_active_color',''),(11077,850,'_is_menu_color_menu_item_active_color','field_5c49a03e7a579'),(11078,850,'is_menu_color_sticky_menu_color',''),(11079,850,'_is_menu_color_sticky_menu_color','field_5c07aed546869d'),(11080,850,'is_menu_color_sticky_menu_active_color',''),(11081,850,'_is_menu_color_sticky_menu_active_color','field_5c49adf465s579'),(11082,850,'is_menu_color',''),(11083,850,'_is_menu_color','field_5ca46df638e6b'),(11084,850,'header_settings',''),(11085,850,'_header_settings','field_5c0e3c4487352'),(11086,850,'footer_visibility','1'),(11087,850,'_footer_visibility','field_5c3483a3d804a'),(11088,850,'page_footer_style',''),(11089,850,'_page_footer_style','field_fddooter_layout'),(11090,850,'footer_bg_color',''),(11091,850,'_footer_bg_color','field_footer_bg_color'),(11092,850,'footer_object_visibility','1'),(11093,850,'_footer_object_visibility','field_footer_object'),(11094,850,'footer_widgets_color',''),(11095,850,'_footer_widgets_color','field_footer_widgets_color'),(11096,850,'footer_widgets_hover_color',''),(11097,850,'_footer_widgets_hover_color','field_footer_widgets_hover_color'),(11098,850,'footer_widgets_title_color',''),(11099,850,'_footer_widgets_title_color','field_footer_widgets_title_color'),(11100,850,'social_icon_hover_color',''),(11101,850,'_social_icon_hover_color','field_footer_social_hover_color'),(11102,850,'footer',''),(11103,850,'_footer','field_5c485c048e4d0'),(11104,850,'page_content_padding_padding_top',''),(11105,850,'_page_content_padding_padding_top','field_5c0795e6ec3c7'),(11106,850,'page_content_padding_padding_bottom',''),(11107,850,'_page_content_padding_padding_bottom','field_5c079657ec3c8'),(11108,850,'page_content_padding',''),(11109,850,'_page_content_padding','field_5c079574ec3c6'),(11110,850,'background_color',''),(11111,850,'_background_color','field_5c0796a6ec3c9'),(11112,850,'page_settings',''),(11113,850,'_page_settings','field_5c0e3c8593617'),(11114,850,'customize_the_button','0'),(11115,850,'_customize_the_button','field_5c4d4e8206c93'),(11116,850,'action_button',''),(11117,850,'_action_button','field_5c4d48056158d'),(11118,850,'_elementor_edit_mode','builder'),(11119,850,'_elementor_template_type','wp-page'),(11120,850,'_elementor_version','2.9.2'),(11121,850,'_wp_page_template','elementor_header_footer'),(11122,850,'_elementor_data','[{\"id\":\"17679ac\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section Title\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"480ee08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"46967c5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PROCESS\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"11d220d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Style\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"665245df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869ce\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Working Process\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26f2823\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e03a35\",\"elType\":\"widget\",\"settings\":{\"workprocess\":[{\"title\":\"Planning\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"10e7721\"},{\"title\":\"Designing\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"c6ea0d6\"},{\"title\":\"Launch\",\"title_html_tag\":\"h2\",\"description\":\"sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\",\"_id\":\"420b31b\"}],\"section_right_shape\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/ring.png\",\"id\":466}},\"elements\":[],\"widgetType\":\"zix-workprocess\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d096751\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"_title\":\"Impressive Tips\"},\"elements\":[{\"id\":\"2e7804d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7acd230\",\"elType\":\"widget\",\"settings\":{\"select_style\":\"style_3\",\"title\":\"We are Create Digital Web Agency\",\"subtitle\":\"Who we are\",\"btn_label\":\"work with us\",\"objebt_text\":\"15+ <span>Years of Experience<\\/span>\",\"carousel_item\":[{\"caro_title\":\"We are Web Agency\",\"caro_subtitle\":\"Who we are\",\"caro_desc\":\"Nullam bibendum odio a sem bibendum vesbulum odio a se rhoncus nisi sed, pulvinar ex Etiam sit amet libero il new ilim nec orci et facilisis rhoncus tempor.\\n<ul>\\n \\t<li>Web App Development<\\/li>\\n \\t<li>HTML5 Game Development<\\/li>\\n \\t<li>Microsite Development<\\/li>\\n<\\/ul>\",\"caro_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/tips_img1.jpg\",\"id\":857},\"_id\":\"117eeaf\"},{\"caro_title\":\"We are Web Agency\",\"caro_subtitle\":\"what you\\u2019ve got to offer\",\"caro_desc\":\"Nullam bibendum odio a sem bibendum vesbulum odio a se rhoncus nisi sed, pulvinar ex Etiam sit amet libero il new ilim nec orci et facilisis rhoncus tempor.\\n<ul>\\n <li>Web App Development<\\/li>\\n \\t<li>HTML5 Game Development<\\/li>\\n \\t<li>Microsite Development<\\/li>\\n<\\/ul>\",\"caro_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/tips_img1.jpg\",\"id\":857},\"_id\":\"b78bf0d\"}],\"title_text\":\"Impressive Tips\",\"subtitle_text\":\"Get Idea\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"about_background_background\":\"classic\",\"about_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/portfolio_bg.png\",\"id\":524}},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6b7b8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"_title\":\"Company Service\"},\"elements\":[{\"id\":\"4224f4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6feade6\",\"elType\":\"widget\",\"settings\":{\"select_style\":\"style_3\",\"title_text\":\"Company Services\",\"subtitle_text\":\"WHO WE ARE\",\"under_title_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"show_count\":6,\"view_all_btn\":\"View All Work\",\"view_btn_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"shape_bg_1_background\":\"classic\",\"shape_bg_1_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/portfolio_bg.png\",\"id\":524},\"shape_bg_3_background\":\"classic\",\"shape_bg_3_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/round-1.png\",\"id\":819},\"shape_bg_2_background\":\"classic\",\"shape_bg_2_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/triangle.png\",\"id\":820}},\"elements\":[],\"widgetType\":\"zix-portfolio\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee246c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section Title\"},\"elements\":[{\"id\":\"8011343\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"86eeac1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Timeline\",\"align\":\"center\",\"title_color\":\"#fc7c2c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.979999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"bb78b37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company History\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"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\":\"heading\"},{\"id\":\"ca56c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3a623e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"_title\":\"Company History\"},\"elements\":[{\"id\":\"6341b3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1a9fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beautifully useful Marketing and Digital Products\",\"timeline_item\":[{\"timeline_title\":\"Graphic Designer\",\"timeline_subtitle\":\"in Web company\",\"timeline_desc\":\"Excepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\",\"timeline_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon1-1.png\",\"id\":870},\"timeline_label\":\"START 2017\",\"_id\":\"dcf1baf\"},{\"timeline_title\":\"Graphic Designer\",\"timeline_subtitle\":\"in Web company\",\"timeline_desc\":\"Excepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\",\"timeline_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon1-1.png\",\"id\":870},\"timeline_label\":\"2018 - 2019\",\"_id\":\"d20da70\"},{\"timeline_title\":\"Graphic Designer\",\"timeline_subtitle\":\"in Web company\",\"timeline_desc\":\"Excepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\",\"timeline_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon1-1.png\",\"id\":870},\"timeline_label\":\"2019 - 2020\",\"_id\":\"4c7345a\"},{\"timeline_title\":\"Graphic Designer\",\"timeline_subtitle\":\"in Web company\",\"timeline_desc\":\"Excepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\",\"timeline_icon\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon1-1.png\",\"id\":870},\"timeline_label\":\"START 2020\",\"_id\":\"54f4c59\"}],\"btn_label\":\"work with us\"},\"elements\":[],\"widgetType\":\"zix-timeline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8bf19dd\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"81b9c18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"438a049\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"name\":\"Mark Tony\",\"designation\":\"Software Developer\",\"content\":\"Minus minim! Corporis exercitation earum interdum molestiae consequat, beatae odio fringilla penatibus perferendis voluptas accusamus eiusmod dapibus elit quasi mollit, id illo convallis nam suscipit aperiam, ullam consequatur laborum.\",\"testimonial_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/clients_img.jpg\",\"id\":732},\"testimonial_quote_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon-1.png\",\"id\":876},\"_id\":\"47a0330\"},{\"name\":\"Mark Tony\",\"designation\":\"Software Developer\",\"content\":\"Minus minim! Corporis exercitation earum interdum molestiae consequat, beatae odio fringilla penatibus perferendis voluptas accusamus eiusmod dapibus elit quasi mollit, id illo convallis nam suscipit aperiam, ullam consequatur laborum.\",\"testimonial_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/clients_img.jpg\",\"id\":732},\"testimonial_quote_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon-1.png\",\"id\":876},\"_id\":\"0fce8f5\"},{\"name\":\"Mark Tony\",\"designation\":\"Software Developer\",\"content\":\"Minus minim! Corporis exercitation earum interdum molestiae consequat, beatae odio fringilla penatibus perferendis voluptas accusamus eiusmod dapibus elit quasi mollit, id illo convallis nam suscipit aperiam, ullam consequatur laborum.\",\"testimonial_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/clients_img.jpg\",\"id\":732},\"testimonial_quote_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/icon-1.png\",\"id\":876},\"_id\":\"697b3ef\"}],\"section_shadow_text\":\"Testimonial\",\"section_bg_color\":\"#F8F8F9\",\"shadow_text_color\":\"#FFFFFF\",\"section_bg_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"641fd1f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5889a3e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65c04d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_01.png\",\"id\":971},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b2f1fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#fbfbfb\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"664933e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_02.png\",\"id\":972},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e7ce0d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#fbfbfb\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39377dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_04.png\",\"id\":974},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7848f7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#fbfbfb\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f497b6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_03.png\",\"id\":973},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"74dd118e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_color\":\"#fbfbfb\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d659f2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/02\\/clients_05.png\",\"id\":975},\"image_size\":\"full\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7658a9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"b4dbcc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9293e7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe Today For New Updates\",\"subtitle\":\"Subscribe to our mailing list to get the updates to your email inbox...\\n\\n\",\"email_placeholder\":\"Type your email...\",\"btn_label\":\"Subscribe\",\"submit_btn_img\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/mail.png\",\"id\":190},\"color_title\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Montserrat\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"sec_bg_shape_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/shap_circle-min.png\",\"id\":66}},\"elements\":[],\"widgetType\":\"subsciribe\"}],\"isInner\":false}],\"isInner\":false}]'),(11123,850,'menu_style','style_1'),(11124,850,'_menu_style','field_menu_style'),(11125,850,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;s:27:\"typography_font_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:4;s:15:\"_padding_mobile\";i:4;s:7:\"_margin\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:7;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:7;s:10:\"image_size\";i:7;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:27:\"background_hover_transition\";i:5;s:15:\"hover_animation\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:21:\"space_between_widgets\";i:2;s:12:\"_inline_size\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:6:\"_title\";i:6;s:6:\"layout\";i:6;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:4;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";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:15:\"zix-workprocess\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"workprocess_content\";a:1:{s:11:\"workprocess\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:1:{s:19:\"section_right_shape\";i:1;}}}}s:9:\"zix-about\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"section_style\";a:1:{s:12:\"select_style\";i:1;}s:18:\"about_carousel_sec\";a:1:{s:13:\"carousel_item\";i:1;}s:9:\"title_sec\";a:3:{s:10:\"title_text\";i:1;s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:27:\"about_background_background\";i:1;s:22:\"about_background_image\";i:1;}}}}s:13:\"zix-portfolio\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:13:\"section_style\";a:1:{s:12:\"select_style\";i:1;}s:9:\"title_sec\";a:3:{s:10:\"title_text\";i:1;s:13:\"subtitle_text\";i:1;s:15:\"under_title_img\";i:1;}s:16:\"portfolio_filter\";a:1:{s:10:\"show_count\";i:1;}s:20:\"view_all_btn_section\";a:2:{s:12:\"view_all_btn\";i:1;s:12:\"view_btn_url\";i:1;}}s:5:\"style\";a:1:{s:19:\"background_shape_s3\";a:6:{s:21:\"shape_bg_1_background\";i:1;s:16:\"shape_bg_1_image\";i:1;s:21:\"shape_bg_3_background\";i:1;s:16:\"shape_bg_3_image\";i:1;s:21:\"shape_bg_2_background\";i:1;s:16:\"shape_bg_2_image\";i:1;}}}}s:12:\"zix-timeline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"timelime_settings\";a:1:{s:13:\"timeline_item\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:11:\"content_sec\";a:1:{s:12:\"testimonials\";i:1;}s:22:\"section_bg_shadow_text\";a:1:{s:17:\"shadow_text_color\";i:1;}}s:5:\"style\";a:1:{s:18:\"testimonial_sec_bg\";a:2:{s:16:\"section_bg_color\";i:1;s:21:\"section_bg_background\";i:1;}}}}s:10:\"subsciribe\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:9:\"title_sec\";a:1:{s:5:\"title\";i:1;}s:12:\"subtitle_sec\";a:1:{s:8:\"subtitle\";i:1;}s:13:\"form_settings\";a:1:{s:14:\"submit_btn_img\";i:1;}}s:5:\"style\";a:2:{s:11:\"style_title\";a:6:{s:11:\"color_title\";i:1;s:27:\"typography_title_typography\";i:1;s:28:\"typography_title_font_family\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_font_weight\";i:1;s:31:\"typography_title_letter_spacing\";i:1;}s:12:\"style_bg_img\";a:1:{s:18:\"sec_bg_shape_image\";i:1;}}}}}'),(11126,850,'page_ratina_logo',''),(11127,850,'_page_ratina_logo','field_5c07adff4d9e'),(11128,850,'ratina_sticky_logo',''),(11129,850,'_ratina_sticky_logo','field_5c0cfd45069e'),(11130,850,'main_logo_dimension_logo_pt',''),(11131,850,'_main_logo_dimension_logo_pt','field_5c0795sc3c7'),(11132,850,'main_logo_dimension_logo_pr',''),(11133,850,'_main_logo_dimension_logo_pr','field_5c0dfsd7ec3c8'),(11134,850,'main_logo_dimension_logo_pb',''),(11135,850,'_main_logo_dimension_logo_pb','field_5dfdfsd7ec3c8'),(11136,850,'main_logo_dimension_logo_pl',''),(11137,850,'_main_logo_dimension_logo_pl','field_5dfdfsd7ecd58'),(11138,850,'main_logo_dimension',''),(11139,850,'_main_logo_dimension','field_5c07ga4ec3c6'),(11140,850,'sticky_logo_dimension_sticky_logo_pt',''),(11141,850,'_sticky_logo_dimension_sticky_logo_pt','field_5c079df43c7'),(11142,850,'sticky_logo_dimension_sticky_logo_pr',''),(11143,850,'_sticky_logo_dimension_sticky_logo_pr','field_5c0dddd7ec3c8'),(11144,850,'sticky_logo_dimension_sticky_logo_pb',''),(11145,850,'_sticky_logo_dimension_sticky_logo_pb','field_5dfdfsd7ds3c8'),(11146,850,'sticky_logo_dimension_sticky_logo_pl',''),(11147,850,'_sticky_logo_dimension_sticky_logo_pl','field_5dfdfsd7df58'),(11148,850,'sticky_logo_dimension',''),(11149,850,'_sticky_logo_dimension','field_5c07ga43c6'),(11150,850,'_wxr_import_has_attachment_refs','1'),(11151,6,'_form','<div class=\"row\">\n<div class=\"col-lg-6\">\n<div class=\"form-group\">\n[text* your-name id:name class:form-control placeholder \"Full Name\"]\n</div>\n</div>\n<div class=\"col-lg-6\">\n<div class=\"form-group\">\n[email* your-email id:email class:form-control placeholder \"Email\"]\n</div>\n</div>\n<div class=\"col-lg-12\">\n<div class=\"form-group\">\n[text subject class:form-control placeholder \"Subject\"]\n</div>\n</div>\n<div class=\"col-lg-12\">\n<div class=\"form-group\">\n[textarea* your-message id:message class:form-control cols:30 rows:10 placeholder \"Enter your message\"]\n</div>\n</div>\n</div>\n<button type=\"submit\" class=\"get_btn dark btn_three\">Send Message</button>'),(11152,6,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:20:\"Zix \"[your-subject]\"\";s:6:\"sender\";s:25:\"Zix <[email protected]>\";s:9:\"recipient\";s:19:\"[email protected]\";s:4:\"body\";s:172:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Zix (https://droitthemes.com/wp/zix)\";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;}'),(11153,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:20:\"Zix \"[your-subject]\"\";s:6:\"sender\";s:25:\"Zix <[email protected]>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:114:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Zix (https://droitthemes.com/wp/zix)\";s:18:\"additional_headers\";s:29:\"Reply-To: [email protected]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(11154,6,'_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.\";}'),(11155,6,'_additional_settings',''),(11156,6,'_locale','en_US'),(11300,2058,'_menu_item_type','post_type'),(11301,2058,'_menu_item_menu_item_parent','0'),(11302,2058,'_menu_item_object_id','2044'),(11303,2058,'_menu_item_object','page'),(11304,2058,'_menu_item_target',''),(11305,2058,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11306,2058,'_menu_item_xfn',''),(11307,2058,'_menu_item_url',''),(11309,2059,'_menu_item_type','post_type'),(11310,2059,'_menu_item_menu_item_parent','0'),(11311,2059,'_menu_item_object_id','2057'),(11312,2059,'_menu_item_object','page'),(11313,2059,'_menu_item_target',''),(11314,2059,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11315,2059,'_menu_item_xfn',''),(11316,2059,'_menu_item_url',''),(11327,2064,'_wp_attached_file','2020/01/cropped-cap-1.png'),(11328,2064,'_wp_attachment_context','site-icon'),(11329,2064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2020/01/cropped-cap-1.png\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-512x447.png\";s:5:\"width\";i:512;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-512x465.png\";s:5:\"width\";i:512;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:23:\"cropped-cap-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-512x470.png\";s:5:\"width\";i:512;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-512x352.png\";s:5:\"width\";i:512;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-512x352.png\";s:5:\"width\";i:512;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:23:\"cropped-cap-1-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:25:\"cropped-cap-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:23:\"cropped-cap-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(11332,2067,'_elementor_edit_mode','builder'),(11333,2067,'_elementor_template_type','kit'),(11334,2067,'_elementor_version','3.0.11'),(11336,1829,'_wp_page_template','default'),(11337,1829,'_elementor_page_settings','a:4:{s:9:\"site_name\";s:9:\"TropoFoto\";s:16:\"site_description\";s:18:\"Casino Photography\";s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(11342,8,'_edit_lock','1604056948:1'),(11386,2076,'_wp_attached_file','2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg'),(11387,2076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:72:\"2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:70:\"depositphotos_82284046-stock-photo-roulette-wheel-background-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:70:\"depositphotos_82284046-stock-photo-roulette-wheel-background-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:72:\"depositphotos_82284046-stock-photo-roulette-wheel-background-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11403,2080,'_wp_attached_file','2020/10/william-hill-casino-1.jpg'),(11404,2080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:855;s:6:\"height\";i:382;s:4:\"file\";s:33:\"2020/10/william-hill-casino-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-770x382.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-768x343.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:31:\"william-hill-casino-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-840x382.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:31:\"william-hill-casino-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-370x382.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:33:\"william-hill-casino-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11423,8,'_elementor_pro_version','3.0.5'),(11441,2087,'_wp_attached_file','2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1.jpg'),(11442,2087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:150;s:4:\"file\";s:73:\"2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1.jpg\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:71:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:71:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(11443,2088,'_wp_attached_file','2020/10/casino-poker-cards-roulette-wheel-banner_91128-250.jpg'),(11444,2088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:313;s:4:\"file\";s:62:\"2020/10/casino-poker-cards-roulette-wheel-banner_91128-250.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-380x313.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-370x313.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:60:\"casino-poker-cards-roulette-wheel-banner_91128-250-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-570x313.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-410x313.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:60:\"casino-poker-cards-roulette-wheel-banner_91128-250-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-370x313.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-300x313.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-355x313.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:313;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:{}}}'),(11445,2089,'_wp_attached_file','2020/10/plazafremont.jpg'),(11446,2089,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:950;s:6:\"height\";i:669;s:4:\"file\";s:24:\"2020/10/plazafremont.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"plazafremont-770x447.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"plazafremont-950x465.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"plazafremont-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"plazafremont-768x541.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:24:\"plazafremont-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:24:\"plazafremont-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:24:\"plazafremont-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:22:\"plazafremont-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"plazafremont-950x400.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:24:\"plazafremont-840x470.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:24:\"plazafremont-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:24:\"plazafremont-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:24:\"plazafremont-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:24:\"plazafremont-700x352.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:22:\"plazafremont-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:24:\"plazafremont-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:24:\"plazafremont-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:24:\"plazafremont-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:24:\"plazafremont-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11447,2090,'_wp_attached_file','2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg'),(11448,2090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:75:\"2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:73:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:73:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:75:\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11449,2091,'_wp_attached_file','2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg'),(11450,2091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:64:\"2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:62:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:64:\"casino-poker-cards-roulette-wheel-banner_91128-250-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11451,2092,'_wp_attached_file','2020/10/plazafremont-1.jpg'),(11452,2092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:26:\"2020/10/plazafremont-1.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:24:\"plazafremont-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:24:\"plazafremont-1-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:26:\"plazafremont-1-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11467,2095,'_wp_attached_file','2020/10/gwjdsL.jpg'),(11468,2095,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2020/10/gwjdsL.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"gwjdsL-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:18:\"gwjdsL-370x350.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:18:\"gwjdsL-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"gwjdsL-250x280.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"gwjdsL-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:18:\"gwjdsL-570x352.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"gwjdsL-370x240.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:18:\"gwjdsL-410x352.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:18:\"gwjdsL-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"gwjdsL-50x40.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"gwjdsL-248x278.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:18:\"gwjdsL-370x400.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"gwjdsL-300x350.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"gwjdsL-355x317.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11492,2099,'_menu_item_type','post_type'),(11493,2099,'_menu_item_menu_item_parent','0'),(11494,2099,'_menu_item_object_id','850'),(11495,2099,'_menu_item_object','page'),(11496,2099,'_menu_item_target',''),(11497,2099,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11498,2099,'_menu_item_xfn',''),(11499,2099,'_menu_item_url',''),(11501,2100,'_menu_item_type','post_type'),(11502,2100,'_menu_item_menu_item_parent','0'),(11503,2100,'_menu_item_object_id','215'),(11504,2100,'_menu_item_object','page'),(11505,2100,'_menu_item_target',''),(11506,2100,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11507,2100,'_menu_item_xfn',''),(11508,2100,'_menu_item_url',''),(11510,2101,'_menu_item_type','post_type'),(11511,2101,'_menu_item_menu_item_parent','0'),(11512,2101,'_menu_item_object_id','2057'),(11513,2101,'_menu_item_object','page'),(11514,2101,'_menu_item_target',''),(11515,2101,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11516,2101,'_menu_item_xfn',''),(11517,2101,'_menu_item_url',''),(11519,2102,'_menu_item_type','post_type'),(11520,2102,'_menu_item_menu_item_parent','0'),(11521,2102,'_menu_item_object_id','2044'),(11522,2102,'_menu_item_object','page'),(11523,2102,'_menu_item_target',''),(11524,2102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11525,2102,'_menu_item_xfn',''),(11526,2102,'_menu_item_url',''),(11535,2103,'_wp_attached_file','2020/10/banner_arabic_roulette_banner-e1603345200955.png'),(11536,2103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:291;s:4:\"file\";s:56:\"2020/10/banner_arabic_roulette_banner-e1603345200955.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-888x465.png\";s:5:\"width\";i:888;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-768x447.png\";s:5:\"width\";i:768;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:39:\"banner_arabic_roulette_banner-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-888x400.png\";s:5:\"width\";i:888;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:39:\"banner_arabic_roulette_banner-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:41:\"banner_arabic_roulette_banner-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11547,2103,'_edit_lock','1603349885:1'),(11548,2103,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:888;s:6:\"height\";i:517;s:4:\"file\";s:33:\"banner_arabic_roulette_banner.png\";}}'),(11549,2103,'_edit_last','1'),(11551,2105,'_wp_attached_file','2020/10/8f317ccea87f799d5cce9b4cdaa9f399.png'),(11552,2105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:674;s:4:\"file\";s:44:\"2020/10/8f317ccea87f799d5cce9b4cdaa9f399.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"8f317ccea87f799d5cce9b4cdaa9f399-1100x465.png\";s:5:\"width\";i:1100;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-768x471.png\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:42:\"8f317ccea87f799d5cce9b4cdaa9f399-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-970x400.png\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:42:\"8f317ccea87f799d5cce9b4cdaa9f399-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:44:\"8f317ccea87f799d5cce9b4cdaa9f399-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11601,2112,'_wp_attached_file','2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png'),(11602,2112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:357;s:4:\"file\";s:62:\"2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-380x357.png\";s:5:\"width\";i:380;s:6:\"height\";i:357;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:60:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:60:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-370x357.png\";s:5:\"width\";i:370;s:6:\"height\";i:357;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:62:\"speed-live-online-casino-andar-bahar-1-1-700x357-1-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11718,2128,'_wp_attached_file','2020/10/casino.png'),(11719,2128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:465;s:4:\"file\";s:18:\"2020/10/casino.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"casino-438x447.png\";s:5:\"width\";i:438;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"casino-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:18:\"casino-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:18:\"casino-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:18:\"casino-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:16:\"casino-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:18:\"casino-438x400.png\";s:5:\"width\";i:438;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:18:\"casino-438x352.png\";s:5:\"width\";i:438;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:18:\"casino-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:18:\"casino-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:18:\"casino-438x352.png\";s:5:\"width\";i:438;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:16:\"casino-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:18:\"casino-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:18:\"casino-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:18:\"casino-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:18:\"casino-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11747,2132,'_wp_attached_file','2020/10/casino-dice.png'),(11748,2132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:129;s:6:\"height\";i:119;s:4:\"file\";s:23:\"2020/10/casino-dice.png\";s:5:\"sizes\";a:2:{s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:21:\"casino-dice-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:21:\"casino-dice-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;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:{}}}'),(11762,2136,'_elementor_edit_mode','builder'),(11763,2136,'_elementor_template_type','wp-page'),(11764,2136,'_elementor_version','3.0.11'),(11765,2136,'_wp_page_template','elementor_header_footer'),(11766,2136,'_elementor_data','[{\"id\":\"204752d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"48ea8ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"95bc85f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Most Tropical Looking Casino?\",\"subtitle\":\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\",\"description\":\"Spend a penny bamboozled the little rotter cuppa grub my good sir I don\'t want no agro.\",\"health_login_text\":\"Already have an account?\",\"health_login_button_text\":\"Login\",\"btn_label2\":\"Start 14 day Trial\",\"email_placeholder\":\"Enter your work email\",\"btn_label\":\"\",\"video_play_label\":\"Watch Video\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino.png\",\"id\":2128},\"objebt_img1\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-dice.png\",\"id\":2132},\"hero_background_background\":\"classic\",\"hero_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/home-01.jpg\",\"id\":17},\"title_part1\":\"Awesome & Creative\",\"bg_text\":\"P\",\"title_array\":[],\"slide_items\":[]},\"elements\":[],\"widgetType\":\"zix-hero\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94d60dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"9d1eaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"712bfaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Casino Photography\",\"subtitle\":\"\",\"description\":\"Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.\",\"btn_label\":\"Contact Us\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\",\"id\":2076},\"objebt_text\":\" <span>Explore <\\/span> 15+ <span>Casino<\\/span>\",\"objebt_img1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/dot.png\",\"id\":37},\"bg_shape_right\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_one.png\",\"id\":417},\"bg_shape_left\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_two.png\",\"id\":416},\"title_text\":\"The Experts Team\",\"show_title\":\"\",\"btn_url\":{\"url\":\"http:\\/\\/tropofoto.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"carousel_item\":[]},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2294dcb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"2210e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee45dfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Access To Great Features\",\"btn_label\":\"\",\"titlebefore\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/promo.png\",\"id\":64},\"shape_2\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2019\\/12\\/circle_img.png\",\"id\":63}},\"elements\":[],\"widgetType\":\"zix-c2a\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524954d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e807b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ad92e97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fine Quality Casino Photos Customised For You\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8591ade\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"p\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576225a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5686199\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2091,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\"},{\"id\":2090,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\"},{\"id\":2095,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/gwjdsL.jpg\"},{\"id\":2092,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/plazafremont-1.jpg\"}],\"thumbnail_size\":\"zix-blog-shortcode-big\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0f2d392\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Sign up and check free\",\"highlighted_text\":\"casino photography\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \",\"tag\":\"span\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"400\",\"__dynamic__\":[],\"__globals__\":{\"title_typography_typography\":\"\",\"words_typography_typography\":\"globals\\/typography?id=text\",\"words_color\":\"\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cba289\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1206525\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bcfef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\",\"id\":2112}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11767,2136,'_elementor_pro_version','3.0.5'),(11770,2137,'_elementor_edit_mode','builder'),(11771,2137,'_elementor_template_type','wp-page'),(11772,2137,'_elementor_version','3.0.11'),(11773,2137,'_wp_page_template','elementor_header_footer'),(11774,2137,'_elementor_data','[{\"id\":\"204752d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"48ea8ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"95bc85f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Most Tropical Looking Casino?\",\"subtitle\":\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\",\"description\":\"Spend a penny bamboozled the little rotter cuppa grub my good sir I don\'t want no agro.\",\"health_login_text\":\"Already have an account?\",\"health_login_button_text\":\"Login\",\"btn_label2\":\"Start 14 day Trial\",\"email_placeholder\":\"Enter your work email\",\"btn_label\":\"\",\"video_play_label\":\"Watch Video\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino.png\",\"id\":2128},\"objebt_img1\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-dice.png\",\"id\":2132},\"hero_background_background\":\"classic\",\"hero_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/home-01.jpg\",\"id\":17},\"title_part1\":\"Awesome & Creative\",\"bg_text\":\"P\",\"title_array\":[],\"slide_items\":[]},\"elements\":[],\"widgetType\":\"zix-hero\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94d60dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"9d1eaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"712bfaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Casino Photography\",\"subtitle\":\"\",\"description\":\"Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.\",\"btn_label\":\"Contact Us\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\",\"id\":2076},\"objebt_text\":\" <span>Explore <\\/span> 15+ <span>Casino<\\/span>\",\"objebt_img1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/dot.png\",\"id\":37},\"bg_shape_right\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_one.png\",\"id\":417},\"bg_shape_left\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_two.png\",\"id\":416},\"title_text\":\"The Experts Team\",\"show_title\":\"\",\"btn_url\":{\"url\":\"http:\\/\\/tropofoto.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"carousel_item\":[]},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2294dcb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"2210e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee45dfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Access To Great Features\",\"btn_label\":\"\",\"titlebefore\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/promo.png\",\"id\":64},\"shape_2\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2019\\/12\\/circle_img.png\",\"id\":63}},\"elements\":[],\"widgetType\":\"zix-c2a\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524954d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e807b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ad92e97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fine Quality Casino Photos Customised For You\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8591ade\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"p\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576225a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5686199\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2091,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\"},{\"id\":2090,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\"},{\"id\":2095,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/gwjdsL.jpg\"},{\"id\":2092,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/plazafremont-1.jpg\"}],\"thumbnail_size\":\"zix-blog-shortcode-big\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0f2d392\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Sign up and check free\",\"highlighted_text\":\"casino photography\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \",\"tag\":\"span\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"400\",\"__dynamic__\":[],\"__globals__\":{\"title_typography_typography\":\"\",\"words_typography_typography\":\"globals\\/typography?id=text\",\"words_color\":\"\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cba289\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1206525\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bcfef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\",\"id\":2112}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11775,2137,'_elementor_pro_version','3.0.5'),(11777,2138,'_elementor_edit_mode','builder'),(11778,2138,'_elementor_template_type','wp-page'),(11779,2138,'_elementor_version','3.0.11'),(11780,2138,'_wp_page_template','elementor_header_footer'),(11781,2138,'_elementor_data','[{\"id\":\"204752d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"48ea8ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"95bc85f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Most Tropical Looking Casino?\",\"subtitle\":\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\",\"description\":\"Spend a penny bamboozled the little rotter cuppa grub my good sir I don\'t want no agro.\",\"health_login_text\":\"Already have an account?\",\"health_login_button_text\":\"Login\",\"btn_label2\":\"Start 14 day Trial\",\"email_placeholder\":\"Enter your work email\",\"btn_label\":\"\",\"video_play_label\":\"Watch Video\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino.png\",\"id\":2128},\"objebt_img1\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-dice.png\",\"id\":2132},\"hero_background_background\":\"classic\",\"hero_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/home-01.jpg\",\"id\":17},\"title_part1\":\"Awesome & Creative\",\"bg_text\":\"P\",\"title_array\":[],\"slide_items\":[]},\"elements\":[],\"widgetType\":\"zix-hero\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94d60dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"9d1eaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"712bfaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Casino Photography\",\"subtitle\":\"\",\"description\":\"Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.\",\"btn_label\":\"Contact Us\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\",\"id\":2076},\"objebt_text\":\" <span>Explore <\\/span> 15+ <span>Casino<\\/span>\",\"objebt_img1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/dot.png\",\"id\":37},\"bg_shape_right\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_one.png\",\"id\":417},\"bg_shape_left\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_two.png\",\"id\":416},\"title_text\":\"The Experts Team\",\"show_title\":\"\",\"btn_url\":{\"url\":\"http:\\/\\/tropofoto.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"carousel_item\":[]},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2294dcb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"2210e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee45dfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Access To Great Features\",\"btn_label\":\"\",\"titlebefore\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/promo.png\",\"id\":64},\"shape_2\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2019\\/12\\/circle_img.png\",\"id\":63}},\"elements\":[],\"widgetType\":\"zix-c2a\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524954d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e807b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ad92e97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fine Quality Casino Photos Customised For You\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8591ade\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"p\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576225a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5686199\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2091,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\"},{\"id\":2090,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\"},{\"id\":2095,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/gwjdsL.jpg\"},{\"id\":2092,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/plazafremont-1.jpg\"}],\"thumbnail_size\":\"zix-blog-shortcode-big\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0f2d392\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Sign up and check free\",\"highlighted_text\":\"casino photography\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \",\"tag\":\"span\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"400\",\"__dynamic__\":[],\"__globals__\":{\"title_typography_typography\":\"\",\"words_typography_typography\":\"globals\\/typography?id=text\",\"words_color\":\"\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cba289\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1206525\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bcfef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\",\"id\":2112}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11782,2138,'_elementor_pro_version','3.0.5'),(11788,2142,'_elementor_edit_mode','builder'),(11789,2142,'_elementor_template_type','wp-page'),(11790,2142,'_elementor_version','3.0.11'),(11791,2142,'_wp_page_template','elementor_header_footer'),(11792,2142,'_elementor_data','[{\"id\":\"204752d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"48ea8ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"95bc85f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Most Tropical Looking Casino?\",\"subtitle\":\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\",\"description\":\"Spend a penny bamboozled the little rotter cuppa grub my good sir I don\'t want no agro.\",\"health_login_text\":\"Already have an account?\",\"health_login_button_text\":\"Login\",\"btn_label2\":\"Start 14 day Trial\",\"email_placeholder\":\"Enter your work email\",\"btn_label\":\"\",\"video_play_label\":\"Watch Video\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino.png\",\"id\":2128},\"objebt_img1\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-dice.png\",\"id\":2132},\"hero_background_background\":\"classic\",\"hero_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/home-01.jpg\",\"id\":17},\"title_part1\":\"Awesome & Creative\",\"bg_text\":\"P\",\"title_array\":[],\"slide_items\":[]},\"elements\":[],\"widgetType\":\"zix-hero\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94d60dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"9d1eaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"712bfaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Casino Photography\",\"subtitle\":\"\",\"description\":\"Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.\",\"btn_label\":\"Contact Us\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\",\"id\":2076},\"objebt_text\":\" <span>Explore <\\/span> 15+ <span>Casino<\\/span>\",\"objebt_img1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/dot.png\",\"id\":37},\"bg_shape_right\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_one.png\",\"id\":417},\"bg_shape_left\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_two.png\",\"id\":416},\"title_text\":\"The Experts Team\",\"show_title\":\"\",\"btn_url\":{\"url\":\"http:\\/\\/tropofoto.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"carousel_item\":[]},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2294dcb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"2210e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee45dfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Access To Great Features\",\"btn_label\":\"\",\"titlebefore\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/promo.png\",\"id\":64},\"shape_2\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2019\\/12\\/circle_img.png\",\"id\":63}},\"elements\":[],\"widgetType\":\"zix-c2a\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524954d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e807b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ad92e97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fine Quality Casino Photos Customised For You\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8591ade\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"p\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576225a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5686199\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2091,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\"},{\"id\":2090,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\"},{\"id\":2095,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/gwjdsL.jpg\"},{\"id\":2092,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/plazafremont-1.jpg\"}],\"thumbnail_size\":\"zix-blog-shortcode-big\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0f2d392\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Sign up and check free\",\"highlighted_text\":\"casino photography\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \",\"tag\":\"span\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"400\",\"__dynamic__\":[],\"__globals__\":{\"title_typography_typography\":\"\",\"words_typography_typography\":\"globals\\/typography?id=text\",\"words_color\":\"\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cba289\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1206525\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bcfef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\",\"id\":2112},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11793,2142,'_elementor_pro_version','3.0.5'),(11796,2143,'_elementor_edit_mode','builder'),(11797,2143,'_elementor_template_type','wp-page'),(11798,2143,'_elementor_version','3.0.11'),(11799,2143,'_wp_page_template','elementor_header_footer'),(11800,2143,'_elementor_data','[{\"id\":\"204752d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"48ea8ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"95bc85f\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Most Tropical Looking Casino?\",\"subtitle\":\"Our design projects are fresh and simple and will benefit your business greatly. Learn more about our work!\",\"description\":\"Spend a penny bamboozled the little rotter cuppa grub my good sir I don\'t want no agro.\",\"health_login_text\":\"Already have an account?\",\"health_login_button_text\":\"Login\",\"btn_label2\":\"Start 14 day Trial\",\"email_placeholder\":\"Enter your work email\",\"btn_label\":\"\",\"video_play_label\":\"Watch Video\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino.png\",\"id\":2128},\"objebt_img1\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-dice.png\",\"id\":2132},\"hero_background_background\":\"classic\",\"hero_background_image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/home-01.jpg\",\"id\":17},\"title_part1\":\"Awesome & Creative\",\"bg_text\":\"P\",\"title_array\":[],\"slide_items\":[]},\"elements\":[],\"widgetType\":\"zix-hero\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94d60dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"9d1eaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"712bfaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Casino Photography\",\"subtitle\":\"\",\"description\":\"Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.\",\"btn_label\":\"Contact Us\",\"featured_img\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\",\"id\":2076},\"objebt_text\":\" <span>Explore <\\/span> 15+ <span>Casino<\\/span>\",\"objebt_img1\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/dot.png\",\"id\":37},\"bg_shape_right\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_one.png\",\"id\":417},\"bg_shape_left\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2020\\/01\\/about_bg_two.png\",\"id\":416},\"title_text\":\"The Experts Team\",\"show_title\":\"\",\"btn_url\":{\"url\":\"http:\\/\\/tropofoto.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"carousel_item\":[]},\"elements\":[],\"widgetType\":\"zix-about\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2294dcb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"2210e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee45dfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Access To Great Features\",\"btn_label\":\"\",\"titlebefore\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/promo.png\",\"id\":64},\"shape_2\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2019\\/12\\/circle_img.png\",\"id\":63}},\"elements\":[],\"widgetType\":\"zix-c2a\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524954d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":0.2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78e807b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ad92e97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fine Quality Casino Photos Customised For You\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8591ade\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"p\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"typography_typography\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576225a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/droitthemes.com\\/wp\\/zix\\/wp-content\\/uploads\\/2019\\/12\\/title-br.png\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5686199\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2091,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg\"},{\"id\":2090,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg\"},{\"id\":2095,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/gwjdsL.jpg\"},{\"id\":2092,\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/plazafremont-1.jpg\"}],\"thumbnail_size\":\"zix-blog-shortcode-big\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0f2d392\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Sign up and check free\",\"highlighted_text\":\"casino photography\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \",\"tag\":\"span\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"400\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"400\",\"__dynamic__\":[],\"__globals__\":{\"title_typography_typography\":\"\",\"words_typography_typography\":\"globals\\/typography?id=text\",\"words_color\":\"\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cba289\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1206525\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bcfef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2020\\/10\\/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\",\"id\":2112},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11801,2143,'_elementor_pro_version','3.0.5'),(11802,8,'_elementor_controls_usage','a:9:{s:8:\"zix-hero\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:12:\"hero_content\";a:1:{s:5:\"title\";i:1;}s:15:\"description_sec\";a:1:{s:11:\"description\";i:1;}s:15:\"button_settings\";a:1:{s:9:\"btn_label\";i:1;}s:15:\"featured_images\";a:2:{s:12:\"featured_img\";i:1;s:11:\"objebt_img1\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:26:\"hero_background_background\";i:1;s:21:\"hero_background_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:21:\"space_between_widgets\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:4;s:3:\"gap\";i:5;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:15:\"animation_delay\";i:1;}}}}s:9:\"zix-about\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:6:{s:13:\"about_content\";a:1:{s:5:\"title\";i:1;}s:22:\"about_content_subtitle\";a:1:{s:8:\"subtitle\";i:1;}s:18:\"about_content_desc\";a:1:{s:11:\"description\";i:1;}s:15:\"button_settings\";a:2:{s:9:\"btn_label\";i:1;s:7:\"btn_url\";i:1;}s:15:\"featured_images\";a:3:{s:12:\"featured_img\";i:1;s:11:\"objebt_text\";i:1;s:11:\"objebt_img1\";i:1;}s:9:\"title_sec\";a:1:{s:10:\"show_title\";i:1;}}s:5:\"style\";a:1:{s:16:\"style_background\";a:2:{s:14:\"bg_shape_right\";i:1;s:13:\"bg_shape_left\";i:1;}}}}s:7:\"zix-c2a\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:11:\"c2a_section\";a:2:{s:5:\"title\";i:1;s:11:\"titlebefore\";i:1;}s:15:\"button_settings\";a:1:{s:9:\"btn_label\";i:1;}s:12:\"shape_images\";a:1:{s:7:\"shape_2\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:2;s:5:\"align\";i:2;s:11:\"header_size\";i:2;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:2;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:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"image-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:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;s:3:\"tag\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}}}}'),(11804,2144,'_wp_attached_file','2020/11/cover-e1604389078228.png'),(11805,2144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:95;s:4:\"file\";s:32:\"2020/11/cover-e1604389078228.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"cover-e1604384703729-1170x465.png\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-768x183.png\";s:5:\"width\";i:768;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x350\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_370x300\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_250x280\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"zix_service_50x50\";a:4:{s:4:\"file\";s:30:\"cover-e1604384703729-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"cover-e1604384703729-1536x366.png\";s:5:\"width\";i:1536;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"cover-e1604384703729-2048x488.png\";s:5:\"width\";i:2048;s:6:\"height\";i:488;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"zix-blog-default-post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-970x400.png\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-blog-post-details\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-blog-cols-thumb\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"zix-blog-cols-thumb-three\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"zix-blog-shortcode\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix-blog-shortcode-big\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"zix-testimonial_quote\";a:4:{s:4:\"file\";s:30:\"cover-e1604384703729-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"zix-team_thumb\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"zix-team_single\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"zix_300x350\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix_archive_355x317\";a:4:{s:4:\"file\";s:32:\"cover-e1604384703729-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;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:{}}}'),(11806,2144,'_wp_attachment_backup_sizes','a:24:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3500;s:6:\"height\";i:1440;s:4:\"file\";s:9:\"cover.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"cover-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:17:\"cover-770x447.png\";s:5:\"width\";i:770;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:17:\"cover-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:18:\"cover-1170x465.png\";s:5:\"width\";i:1170;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"zix_370x350-orig\";a:4:{s:4:\"file\";s:17:\"cover-370x350.png\";s:5:\"width\";i:370;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"zix_370x300-orig\";a:4:{s:4:\"file\";s:17:\"cover-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"zix_250x280-orig\";a:4:{s:4:\"file\";s:17:\"cover-250x280.png\";s:5:\"width\";i:250;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"zix_service_50x50-orig\";a:4:{s:4:\"file\";s:15:\"cover-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:18:\"cover-1536x632.png\";s:5:\"width\";i:1536;s:6:\"height\";i:632;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:18:\"cover-2048x843.png\";s:5:\"width\";i:2048;s:6:\"height\";i:843;s:9:\"mime-type\";s:9:\"image/png\";}s:36:\"zix-blog-default-post-thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"cover-970x400.png\";s:5:\"width\";i:970;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"zix-blog-post-details-orig\";a:4:{s:4:\"file\";s:17:\"cover-840x470.png\";s:5:\"width\";i:840;s:6:\"height\";i:470;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"zix-blog-cols-thumb-orig\";a:4:{s:4:\"file\";s:17:\"cover-570x352.png\";s:5:\"width\";i:570;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"zix-blog-cols-thumb-three-orig\";a:4:{s:4:\"file\";s:17:\"cover-370x240.png\";s:5:\"width\";i:370;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"zix-blog-shortcode-orig\";a:4:{s:4:\"file\";s:17:\"cover-410x352.png\";s:5:\"width\";i:410;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"zix-blog-shortcode-big-orig\";a:4:{s:4:\"file\";s:17:\"cover-700x352.png\";s:5:\"width\";i:700;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"zix-testimonial_quote-orig\";a:4:{s:4:\"file\";s:15:\"cover-50x40.png\";s:5:\"width\";i:50;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zix-team_thumb-orig\";a:4:{s:4:\"file\";s:17:\"cover-248x278.png\";s:5:\"width\";i:248;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zix-team_single-orig\";a:4:{s:4:\"file\";s:17:\"cover-370x400.png\";s:5:\"width\";i:370;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"zix_300x350-orig\";a:4:{s:4:\"file\";s:17:\"cover-300x350.png\";s:5:\"width\";i:300;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"zix_archive_355x317-orig\";a:4:{s:4:\"file\";s:17:\"cover-355x317.png\";s:5:\"width\";i:355;s:6:\"height\";i:317;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"full-1604389062429\";a:3:{s:5:\"width\";i:2423;s:6:\"height\";i:577;s:4:\"file\";s:24:\"cover-e1604384703729.png\";}s:18:\"full-1604389078228\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:95;s:4:\"file\";s:24:\"cover-e1604389062429.png\";}}'),(12666,1829,'_elementor_css','a:6:{s:4:\"time\";i:1662938151;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:\"\";}'),(12667,8,'_elementor_css','a:6:{s:4:\"time\";i:1662938153;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12668,215,'_elementor_css','a:6:{s:4:\"time\";i:1662961169;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12669,850,'_elementor_css','a:6:{s:4:\"time\";i:1662975887;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int NOT NULL DEFAULT '0',
`post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=2152 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (6,1,'2019-12-02 10:06:20','2019-12-02 10:06:20','<div class=\"row\">\r\n<div class=\"col-lg-6\">\r\n<div class=\"form-group\">\r\n[text* your-name id:name class:form-control placeholder \"Full Name\"]\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6\">\r\n<div class=\"form-group\">\r\n[email* your-email id:email class:form-control placeholder \"Email\"]\r\n</div>\r\n</div>\r\n<div class=\"col-lg-12\">\r\n<div class=\"form-group\">\r\n[text subject class:form-control placeholder \"Subject\"]\r\n</div>\r\n</div>\r\n<div class=\"col-lg-12\">\r\n<div class=\"form-group\">\r\n[textarea* your-message id:message class:form-control cols:30 rows:10 placeholder \"Enter your message\"]\r\n</div>\r\n</div>\r\n</div>\r\n<button type=\"submit\" class=\"get_btn dark btn_three\">Send Message</button>\n1\nZix \"[your-subject]\"\nZix <[email protected]>\[email protected]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Zix (https://droitthemes.com/wp/zix)\nReply-To: [your-email]\n\n\n\n\nZix \"[your-subject]\"\nZix <[email protected]>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Zix (https://droitthemes.com/wp/zix)\nReply-To: [email protected]\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 form 1','','publish','closed','closed','','contact-form-1-2','','','2019-12-02 10:06:20','2019-12-02 10:06:20','',0,'https://droitthemes.com/wp/zix/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(7,1,'2020-10-13 11:38:02','2020-10-13 11:38:02','','woocommerce-placeholder','','inherit','closed','closed','','woocommerce-placeholder','','','2020-10-13 11:38:02','2020-10-13 11:38:02','',0,'http://tropofoto.com/wp-content/uploads/2020/10/woocommerce-placeholder.png',0,'attachment','image/png',0),(8,1,'2019-12-02 10:12:03','2019-12-02 10:12:03','<section>\n <h2>The Most Tropical Looking Casino?</h2> \n <img data-depth=\"0.5\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png\" alt=\"Featured Object image\"><img data-parallax=\'{\"x\": 0, \"y\": 60}\' src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino.png\" alt=\"Featured Image\"> \n </section> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png\" alt=\"background shape image\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png\" alt=\"background shape image\"> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\" alt=\"about featured\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png\" alt=\"about object image\"> Explore 15+ Casino \n <h2 data-wow-delay=\"0.2s\">Welcome To Casino Photography</h2><p data-wow-delay=\"0.4s\">Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.</p><a href=\"http://tropofoto.com/contact/\" data-wow-delay=\"0.6s\">Contact Us</a> \n </section>\n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2019/12/circle_img.png\" alt=\"Call to action shap\"> \n <h2> <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png\" alt=\"title before\">Get Access To Great Features </h2> \n </section>\n <h1>Fine Quality Casino Photos Customised For You</h1> \n <p>Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.</p> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" loading=\"lazy\" /> \n <figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\" alt=\"casino-poker-cards-roulette-wheel-banner_91128-250\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\" alt=\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL-600x352.jpg\" alt=\"gwjdsL\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1-600x352.jpg\" alt=\"plazafremont\" /></figure> \n Previous\n Next\n Sign up and check free\n every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \n <img width=\"640\" height=\"326\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\" alt=\"\" loading=\"lazy\" />','Home','','publish','closed','closed','','home','','','2020-10-30 11:24:03','2020-10-30 11:24:03','',0,'https://droitthemes.com/wp/zix/?page_id=8',0,'page','',0),(11,1,'2018-03-31 10:59:31','2018-03-31 09:59:31','','blog_detail','','inherit','open','closed','','blog_detail','','','2018-03-31 10:59:31','2018-03-31 09:59:31','',0,'http://tropofoto.com/wp-content/uploads/2018/03/blog_detail-1.jpg',0,'attachment','image/jpeg',0),(14,1,'2018-04-02 03:18:27','2018-04-02 02:18:27','','page-title','','inherit','open','closed','','page-title','','','2018-04-02 03:18:27','2018-04-02 02:18:27','',0,'http://tropofoto.com/wp-content/uploads/2018/04/page-title.jpg',0,'attachment','image/jpeg',0),(17,1,'2019-12-02 14:09:55','2019-12-02 14:09:55','','home-01','','inherit','open','closed','','home-01','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/home-01.jpg',0,'attachment','image/jpeg',0),(18,1,'2019-12-02 14:12:27','2019-12-02 14:12:27','','small_memphis_right-min','','inherit','open','closed','','small_memphis_right-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/small_memphis_right-min.png',0,'attachment','image/png',0),(19,1,'2019-12-02 14:12:28','2019-12-02 14:12:28','','small_memphis_left-min','','inherit','open','closed','','small_memphis_left-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/small_memphis_left-min.png',0,'attachment','image/png',0),(20,1,'2019-12-02 14:12:54','2019-12-02 14:12:54','','big_memphis-min','','inherit','open','closed','','big_memphis-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/big_memphis-min.png',0,'attachment','image/png',0),(29,1,'2019-12-03 10:24:29','2019-12-03 10:24:29','','about_img-min','','inherit','open','closed','','about_img-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/about_img-min.jpg',0,'attachment','image/jpeg',0),(34,1,'2018-04-11 04:58:58','2018-04-11 03:58:58','','chart1','','inherit','open','closed','','chart1','','','2018-04-11 04:58:58','2018-04-11 03:58:58','',0,'http://tropofoto.com/wp-content/uploads/2018/03/chart1.png',0,'attachment','image/png',0),(37,1,'2019-12-03 11:40:31','2019-12-03 11:40:31','','dot','','inherit','open','closed','','dot','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png',0,'attachment','image/png',0),(39,1,'2018-04-11 07:59:53','2018-04-11 06:59:53','','blog1','','inherit','open','closed','','blog1','','','2018-04-11 07:59:53','2018-04-11 06:59:53','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog1.jpg',0,'attachment','image/jpeg',0),(40,1,'2019-12-03 11:55:58','2019-12-03 11:55:58','','title-br','','inherit','open','closed','','title-br','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png',0,'attachment','image/png',0),(41,1,'2018-04-11 07:59:55','2018-04-11 06:59:55','','blog3','','inherit','open','closed','','blog3','','','2018-04-11 07:59:55','2018-04-11 06:59:55','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog3.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-04-11 07:59:56','2018-04-11 06:59:56','','blog5','','inherit','open','closed','','blog5','','','2018-04-11 07:59:56','2018-04-11 06:59:56','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog5.jpg',0,'attachment','image/jpeg',0),(43,1,'2018-04-11 07:59:57','2018-04-11 06:59:57','','blog6','','inherit','open','closed','','blog6','','','2018-04-11 07:59:57','2018-04-11 06:59:57','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog6.jpg',0,'attachment','image/jpeg',0),(44,1,'2018-04-11 07:59:58','2018-04-11 06:59:58','','blog7','','inherit','open','closed','','blog7','','','2018-04-11 07:59:58','2018-04-11 06:59:58','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog7.jpg',0,'attachment','image/jpeg',0),(45,1,'2018-04-11 07:59:59','2018-04-11 06:59:59','','blog9','','inherit','open','closed','','blog9','','','2018-04-11 07:59:59','2018-04-11 06:59:59','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog9.jpg',0,'attachment','image/jpeg',0),(50,1,'2019-12-03 12:53:31','2019-12-03 12:53:31','','service-patterns','','inherit','open','closed','','service-patterns','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service-patterns.jpg',0,'attachment','image/jpeg',0),(58,1,'2018-04-11 08:21:12','2018-04-11 07:21:12','','blog4','','inherit','open','closed','','blog4','','','2018-04-11 08:21:12','2018-04-11 07:21:12','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog4.jpg',0,'attachment','image/jpeg',0),(59,1,'2018-04-11 08:21:14','2018-04-11 07:21:14','','blog8','','inherit','open','closed','','blog8','','','2018-04-11 08:21:14','2018-04-11 07:21:14','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog8.jpg',0,'attachment','image/jpeg',0),(63,1,'2019-12-03 14:01:43','2019-12-03 14:01:43','','circle_img','','inherit','open','closed','','circle_img','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/circle_img.png',0,'attachment','image/png',0),(66,1,'2019-12-03 14:04:15','2019-12-03 14:04:15','','shap_circle-min','','inherit','open','closed','','shap_circle-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/shap_circle-min.png',0,'attachment','image/png',0),(74,1,'2018-04-12 05:32:35','2018-04-12 04:32:35','','brand1','','inherit','open','closed','','brand1','','','2018-04-12 05:32:35','2018-04-12 04:32:35','',0,'http://tropofoto.com/wp-content/uploads/2018/04/brand1.png',0,'attachment','image/png',0),(75,1,'2018-04-12 05:32:35','2018-04-12 04:32:35','','brand2','','inherit','open','closed','','brand2','','','2018-04-12 05:32:35','2018-04-12 04:32:35','',0,'http://tropofoto.com/wp-content/uploads/2018/04/brand2.png',0,'attachment','image/png',0),(76,1,'2018-04-12 05:32:36','2018-04-12 04:32:36','','brand3','','inherit','open','closed','','brand3','','','2018-04-12 05:32:36','2018-04-12 04:32:36','',0,'http://tropofoto.com/wp-content/uploads/2018/04/brand3.png',0,'attachment','image/png',0),(83,1,'2018-04-12 08:46:32','2018-04-12 07:46:32','','brand4','','inherit','open','closed','','brand4','','','2018-04-12 08:46:32','2018-04-12 07:46:32','',0,'http://tropofoto.com/wp-content/uploads/2018/04/brand4.png',0,'attachment','image/png',0),(84,1,'2018-04-12 08:46:32','2018-04-12 07:46:32','','brand5','','inherit','open','closed','','brand5','','','2018-04-12 08:46:32','2018-04-12 07:46:32','',0,'http://tropofoto.com/wp-content/uploads/2018/04/brand5.png',0,'attachment','image/png',0),(85,1,'2018-04-12 08:46:33','2018-04-12 07:46:33','','brand6','','inherit','open','closed','','brand6','','','2018-04-12 08:46:33','2018-04-12 07:46:33','',0,'http://tropofoto.com/wp-content/uploads/2018/04/brand6.png',0,'attachment','image/png',0),(86,1,'2018-04-13 08:59:58','2018-04-13 07:59:58','','logo','','inherit','open','closed','','logo','','','2018-04-13 08:59:58','2018-04-13 07:59:58','',0,'http://tropofoto.com/wp-content/uploads/2018/04/logo.png',0,'attachment','image/png',0),(87,1,'2018-04-13 08:59:58','2018-04-13 07:59:58','','logo_white','','inherit','open','closed','','logo_white','','','2018-04-13 08:59:58','2018-04-13 07:59:58','',0,'http://tropofoto.com/wp-content/uploads/2018/04/logo_white.png',0,'attachment','image/png',0),(88,1,'2018-04-14 10:21:01','2018-04-14 09:21:01','','bg-footer','','inherit','open','closed','','bg-footer','','','2018-04-14 10:21:01','2018-04-14 09:21:01','',0,'http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png',0,'attachment','image/png',0),(90,1,'2019-12-04 10:02:55','2019-12-04 10:02:55','','project_01','','inherit','open','closed','','project_01','','','2019-12-04 10:02:55','2019-12-04 10:02:55','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_01.jpg',0,'attachment','image/jpeg',0),(91,1,'2019-12-04 10:03:23','2019-12-04 10:03:23','','pr_details_1','','inherit','open','closed','','pr_details_1','','','2019-12-04 10:03:23','2019-12-04 10:03:23','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details_1.jpg',0,'attachment','image/jpeg',0),(94,1,'2019-12-04 10:13:33','2019-12-04 10:13:33','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','App Ui/UX & Development','','publish','closed','closed','','app-ui-ux-development','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=94',0,'portfolio','',0),(99,1,'2018-04-19 07:50:02','2018-04-19 06:50:02','','bg-sidebar','','inherit','open','closed','','bg-sidebar','','','2018-04-19 07:50:02','2018-04-19 06:50:02','',0,'http://tropofoto.com/wp-content/uploads/2018/04/bg-sidebar.png',0,'attachment','image/png',0),(102,1,'2019-12-04 10:10:11','2019-12-04 10:10:11','','pr-04','','inherit','open','closed','','pr-04','','','2019-12-04 10:10:11','2019-12-04 10:10:11','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr-04.jpg',0,'attachment','image/jpeg',0),(104,1,'2019-12-04 10:13:23','2019-12-04 10:13:23','','pr-05','','inherit','open','closed','','pr-05','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',94,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr-05.jpg',0,'attachment','image/jpeg',0),(107,1,'2019-12-04 10:16:44','2019-12-04 10:16:44','','project_01','','inherit','open','closed','','project_01-2','','','2019-12-04 10:16:44','2019-12-04 10:16:44','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_01-1.jpg',0,'attachment','image/jpeg',0),(108,1,'2019-12-04 10:16:45','2019-12-04 10:16:45','','project_02','','inherit','open','closed','','project_02','','','2019-12-04 10:16:45','2019-12-04 10:16:45','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_02.jpg',0,'attachment','image/jpeg',0),(109,1,'2019-12-04 10:16:46','2019-12-04 10:16:46','','project_03','','inherit','open','closed','','project_03','','','2019-12-04 10:16:46','2019-12-04 10:16:46','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_03.jpg',0,'attachment','image/jpeg',0),(110,1,'2019-12-04 10:16:46','2019-12-04 10:16:46','','project_04','','inherit','open','closed','','project_04','','','2019-12-04 10:16:46','2019-12-04 10:16:46','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_04.jpg',0,'attachment','image/jpeg',0),(111,1,'2019-12-04 10:16:47','2019-12-04 10:16:47','','project_05','','inherit','open','closed','','project_05','','','2019-12-04 10:16:47','2019-12-04 10:16:47','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_05.jpg',0,'attachment','image/jpeg',0),(112,1,'2019-12-04 10:16:47','2019-12-04 10:16:47','','project_06','','inherit','open','closed','','project_06','','','2019-12-04 10:16:47','2019-12-04 10:16:47','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_06.jpg',0,'attachment','image/jpeg',0),(113,1,'2019-12-04 10:16:48','2019-12-04 10:16:48','','project_07','','inherit','open','closed','','project_07','','','2019-12-04 10:16:48','2019-12-04 10:16:48','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_07.jpg',0,'attachment','image/jpeg',0),(114,1,'2019-12-04 10:16:49','2019-12-04 10:16:49','','project_08','','inherit','open','closed','','project_08','','','2019-12-04 10:16:49','2019-12-04 10:16:49','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_08.jpg',0,'attachment','image/jpeg',0),(117,1,'2018-04-24 10:58:36','2018-04-24 09:58:36','\"audio\".','audio','','inherit','open','closed','','audio','','','2018-04-24 10:58:36','2018-04-24 09:58:36','',0,'http://tropofoto.com/wp-content/uploads/2018/04/audio.mp3',0,'attachment','audio/mpeg',0),(135,1,'2019-12-05 06:30:23','2019-12-05 06:30:23','','video_bg-min','','inherit','open','closed','','video_bg-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/video_bg-min.jpg',0,'attachment','image/jpeg',0),(137,1,'2018-04-25 11:03:12','2018-04-25 10:03:12','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','DEMAND AS TRANSPORTATION SERVICES AS COMMERCE','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce','','','2018-04-25 11:03:12','2018-04-25 10:03:12','',0,'http://tropofoto.com/?post_type=case_studies&p=137',0,'case_studies','',0),(138,1,'2018-04-25 11:25:28','2018-04-25 10:25:28','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','GOLF CLUBS ARE FOR MAKING BUSINESS DEALS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-2','','','2018-04-25 11:25:28','2018-04-25 10:25:28','',0,'http://tropofoto.com/?post_type=case_studies&p=138',0,'case_studies','',0),(139,1,'2018-04-25 11:26:34','2018-04-25 10:26:34','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE ACCELERATOR COACHING PROGRAM','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-2-3','','','2018-04-25 11:26:34','2018-04-25 10:26:34','',0,'http://tropofoto.com/?post_type=case_studies&p=139',0,'case_studies','',0),(140,1,'2018-04-25 11:26:08','2018-04-25 10:26:08','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE IMPACT OF MUSIC ON OUR WELL BEING','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-2-2','','','2018-04-25 11:26:08','2018-04-25 10:26:08','',0,'http://tropofoto.com/?post_type=case_studies&p=140',0,'case_studies','',0),(141,1,'2018-04-25 11:10:13','2018-04-25 10:10:13','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE CHANGING SCENARIO IN MUSIC INDUSTRY','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-2-3-2','','','2018-04-25 11:10:13','2018-04-25 10:10:13','',0,'http://tropofoto.com/?post_type=case_studies&p=141',0,'case_studies','',0),(146,1,'2019-12-05 07:49:10','2019-12-05 07:49:10','','team1-min','','inherit','open','closed','','team1-min','','','2019-12-05 07:49:10','2019-12-05 07:49:10','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team1-min.jpg',0,'attachment','image/jpeg',0),(147,1,'2019-12-05 07:49:11','2019-12-05 07:49:11','','team5-min','','inherit','open','closed','','team5-min','','','2019-12-05 07:49:11','2019-12-05 07:49:11','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team5-min.jpg',0,'attachment','image/jpeg',0),(148,1,'2019-12-05 07:49:11','2019-12-05 07:49:11','','team3-min','','inherit','open','closed','','team3-min','','','2019-12-05 07:49:11','2019-12-05 07:49:11','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team3-min.jpg',0,'attachment','image/jpeg',0),(149,1,'2019-12-05 07:49:12','2019-12-05 07:49:12','','team4-min','','inherit','open','closed','','team4-min','','','2019-12-05 07:49:12','2019-12-05 07:49:12','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team4-min.jpg',0,'attachment','image/jpeg',0),(150,1,'2019-12-05 07:49:12','2019-12-05 07:49:12','','team2-min','','inherit','open','closed','','team2-min','','','2019-12-05 07:49:12','2019-12-05 07:49:12','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team2-min.jpg',0,'attachment','image/jpeg',0),(157,1,'2018-04-27 04:04:37','2018-04-27 03:04:37','','blog2','','inherit','open','closed','','blog2','','','2018-04-27 04:04:37','2018-04-27 03:04:37','',0,'http://tropofoto.com/wp-content/uploads/2018/04/blog2.jpg',0,'attachment','image/jpeg',0),(159,1,'2018-04-27 04:10:06','2018-04-27 03:10:06','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','GOLF CLUBS ARE FOR MAKING BUSINESS DEALS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-2-4','','','2018-04-27 04:10:06','2018-04-27 03:10:06','',0,'http://tropofoto.com/?post_type=case_studies&p=159',0,'case_studies','',0),(160,1,'2018-04-27 04:10:15','2018-04-27 03:10:15','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','DEMAND AS TRANSPORTATION SERVICES AS COMMERCE','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-3','','','2018-04-27 04:10:15','2018-04-27 03:10:15','',0,'http://tropofoto.com/?post_type=case_studies&p=160',0,'case_studies','',0),(161,1,'2018-04-27 04:09:48','2018-04-27 03:09:48','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE IMPACT OF MUSIC ON OUR WELL BEING','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','demand-as-transportation-services-as-commerce-2-2-2','','','2018-04-27 04:09:48','2018-04-27 03:09:48','',0,'http://tropofoto.com/?post_type=case_studies&p=161',0,'case_studies','',0),(162,1,'2018-04-27 04:07:34','2018-04-27 03:07:34','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE CHANGING SCENARIO IN MUSIC INDUSTRY','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','the-changing-scenario-in-music-industry','','','2018-04-27 04:07:34','2018-04-27 03:07:34','',0,'http://tropofoto.com/?post_type=case_studies&p=162',0,'case_studies','',0),(173,1,'2019-12-05 11:55:45','2019-12-05 11:55:45','','single_post','','inherit','open','closed','','single_post','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/single_post.jpg',0,'attachment','image/jpeg',0),(174,1,'2019-12-05 11:59:00','2019-12-05 11:59:00','','img_1-min','','inherit','open','closed','','img_1-min','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/img_1-min.jpg',0,'attachment','image/jpeg',0),(178,1,'2019-12-05 12:01:20','2019-12-05 12:01:20','','img_2','','inherit','open','closed','','img_2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/img_2.jpg',0,'attachment','image/jpeg',0),(180,1,'2019-12-05 12:02:05','2019-12-05 12:02:05','','img_3','','inherit','open','closed','','img_3','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/img_3.jpg',0,'attachment','image/jpeg',0),(190,1,'2019-12-05 13:24:27','2019-12-05 13:24:27','','mail','','inherit','open','closed','','mail','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/mail.png',0,'attachment','image/png',0),(196,1,'2018-05-08 04:29:30','2018-05-08 03:29:30','','404','','inherit','open','closed','','404','','','2018-05-08 04:29:30','2018-05-08 03:29:30','',0,'http://tropofoto.com/wp-content/uploads/2018/05/404.png',0,'attachment','image/png',0),(199,1,'2018-05-08 10:16:21','2018-05-08 09:16:21','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\"][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan','','','2018-05-08 10:16:21','2018-05-08 09:16:21','',0,'http://tropofoto.com/?post_type=project&p=199',0,'project','',0),(201,1,'2018-05-08 11:09:58','2018-05-08 10:09:58','','project2','','inherit','open','closed','','project2','','','2018-05-08 11:09:58','2018-05-08 10:09:58','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project2.jpg',0,'attachment','image/jpeg',0),(202,1,'2018-05-08 11:09:59','2018-05-08 10:09:59','','project3','','inherit','open','closed','','project3','','','2018-05-08 11:09:59','2018-05-08 10:09:59','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project3.jpg',0,'attachment','image/jpeg',0),(203,1,'2018-05-08 11:09:59','2018-05-08 10:09:59','','project4','','inherit','open','closed','','project4','','','2018-05-08 11:09:59','2018-05-08 10:09:59','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project4.jpg',0,'attachment','image/jpeg',0),(204,1,'2018-05-08 11:10:00','2018-05-08 10:10:00','','project5','','inherit','open','closed','','project5','','','2018-05-08 11:10:00','2018-05-08 10:10:00','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project5.jpg',0,'attachment','image/jpeg',0),(205,1,'2018-05-08 11:10:01','2018-05-08 10:10:01','','project6','','inherit','open','closed','','project6','','','2018-05-08 11:10:01','2018-05-08 10:10:01','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project6.jpg',0,'attachment','image/jpeg',0),(206,1,'2018-05-08 11:10:01','2018-05-08 10:10:01','','project7','','inherit','open','closed','','project7','','','2018-05-08 11:10:01','2018-05-08 10:10:01','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project7.jpg',0,'attachment','image/jpeg',0),(207,1,'2018-05-08 11:10:02','2018-05-08 10:10:02','','project8','','inherit','open','closed','','project8','','','2018-05-08 11:10:02','2018-05-08 10:10:02','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project8.jpg',0,'attachment','image/jpeg',0),(209,1,'2018-05-08 11:10:03','2018-05-08 10:10:03','','project1','','inherit','open','closed','','project1','','','2018-05-08 11:10:03','2018-05-08 10:10:03','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project1.jpg',0,'attachment','image/jpeg',0),(215,1,'2019-12-08 10:13:35','2019-12-08 10:13:35','<h2>CONTACT INFO</h2> \n <h2>Contact Details</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <img width=\"51\" height=\"51\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/phone.png\" alt=\"\" /> \n <h2>Phone Number</h2> \n <p><a href=\"tell:1234567890\">+(123) 456 7890</a><br /><a href=\"tell:1234567890\">+(123) 456 7890</a></p> \n <img width=\"50\" height=\"47\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/email.png\" alt=\"\" /> \n <h2>Email Address</h2> \n <p><a href=\"mailto:[email protected]\">[email protected]</a><br /><a href=\"mailto:[email protected]\">[email protected]</a></p> \n <img width=\"36\" height=\"50\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/place.png\" alt=\"\" /> \n <h2>Office Location</h2> \n <p><a href=\"https://goo.gl/maps/orpBuVwk6aaDTURx7\">123 New York E Block 12670,</a><br /><a href=\"https://goo.gl/maps/orpBuVwk6aaDTURx7\">Street 2101 USA</a></p> \n <h2>CONTACT US</h2> \n <h2>Contact Form</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n [contact-form-7 id=\"6\" title=\"Contact form 1\"] \n <iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&t=m&z=14&output=embed&iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact','','publish','closed','closed','','contact','','','2019-12-08 10:13:35','2019-12-08 10:13:35','',0,'https://droitthemes.com/wp/zix/?page_id=215',0,'page','',0),(217,1,'2018-05-10 04:37:27','2018-05-10 03:37:27','','project-style-1','','publish','closed','closed','','project-style-1','','','2018-05-10 04:37:27','2018-05-10 03:37:27','',0,'http://tropofoto.com/?post_type=vc_grid_item&p=217',0,'vc_grid_item','',0),(220,1,'2018-05-10 08:16:09','2018-05-10 07:16:09','','avatar1','','inherit','open','closed','','avatar1','','','2018-05-10 08:16:09','2018-05-10 07:16:09','',0,'http://tropofoto.com/wp-content/uploads/2018/05/avatar1.png',0,'attachment','image/png',0),(222,1,'2018-05-10 10:45:45','2018-05-10 09:45:45','','chart2','','inherit','open','closed','','chart2','','','2018-05-10 10:45:45','2018-05-10 09:45:45','',0,'http://tropofoto.com/wp-content/uploads/2018/05/chart2.png',0,'attachment','image/png',0),(223,1,'2018-05-10 10:45:46','2018-05-10 09:45:46','','detail1','','inherit','open','closed','','detail1','','','2018-05-10 10:45:46','2018-05-10 09:45:46','',0,'http://tropofoto.com/wp-content/uploads/2018/05/detail1.jpg',0,'attachment','image/jpeg',0),(225,1,'2018-05-11 09:45:38','2018-05-11 08:45:38','','chart3','','inherit','open','closed','','chart3','','','2018-05-11 09:45:38','2018-05-11 08:45:38','',0,'http://tropofoto.com/wp-content/uploads/2018/05/chart3.png',0,'attachment','image/png',0),(226,1,'2018-05-11 10:43:44','2018-05-11 09:43:44','','counter1','','inherit','open','closed','','counter1','','','2018-05-11 10:43:44','2018-05-11 09:43:44','',0,'http://tropofoto.com/wp-content/uploads/2018/05/counter1.png',0,'attachment','image/png',0),(227,1,'2018-05-11 10:43:44','2018-05-11 09:43:44','','counter2','','inherit','open','closed','','counter2','','','2018-05-11 10:43:44','2018-05-11 09:43:44','',0,'http://tropofoto.com/wp-content/uploads/2018/05/counter2.png',0,'attachment','image/png',0),(228,1,'2018-05-11 10:43:44','2018-05-11 09:43:44','','counter3','','inherit','open','closed','','counter3','','','2018-05-11 10:43:44','2018-05-11 09:43:44','',0,'http://tropofoto.com/wp-content/uploads/2018/05/counter3.png',0,'attachment','image/png',0),(229,1,'2018-05-11 10:43:45','2018-05-11 09:43:45','','counter4','','inherit','open','closed','','counter4','','','2018-05-11 10:43:45','2018-05-11 09:43:45','',0,'http://tropofoto.com/wp-content/uploads/2018/05/counter4.png',0,'attachment','image/png',0),(230,1,'2018-05-12 03:36:57','2018-05-12 02:36:57','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2','','','2018-05-12 03:36:57','2018-05-12 02:36:57','',0,'http://tropofoto.com/?post_type=project&p=230',0,'project','',0),(231,1,'2018-05-12 03:37:26','2018-05-12 02:37:26','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2','','','2018-05-12 03:37:26','2018-05-12 02:37:26','',0,'http://tropofoto.com/?post_type=project&p=231',0,'project','',0),(232,1,'2018-05-12 03:38:01','2018-05-12 02:38:01','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2','','','2018-05-12 03:38:01','2018-05-12 02:38:01','',0,'http://tropofoto.com/?post_type=project&p=232',0,'project','',0),(233,1,'2018-05-12 03:38:54','2018-05-12 02:38:54','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2','','','2018-05-12 03:38:54','2018-05-12 02:38:54','',0,'http://tropofoto.com/?post_type=project&p=233',0,'project','',0),(234,1,'2018-05-12 03:39:29','2018-05-12 02:39:29','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2-2','','','2018-05-12 03:39:29','2018-05-12 02:39:29','',0,'http://tropofoto.com/?post_type=project&p=234',0,'project','',0),(235,1,'2018-05-12 03:39:57','2018-05-12 02:39:57','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2-2-2','','','2018-05-12 03:39:57','2018-05-12 02:39:57','',0,'http://tropofoto.com/?post_type=project&p=235',0,'project','',0),(236,1,'2018-05-12 03:40:15','2018-05-12 02:40:15','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2-2-2-2','','','2018-05-12 03:40:15','2018-05-12 02:40:15','',0,'http://tropofoto.com/?post_type=project&p=236',0,'project','',0),(237,1,'2018-05-12 03:40:51','2018-05-12 02:40:51','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2-2-2-2-2','','','2018-05-12 03:40:51','2018-05-12 02:40:51','',0,'http://tropofoto.com/?post_type=project&p=237',0,'project','',0),(238,1,'2018-05-12 03:41:10','2018-05-12 02:41:10','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2-2-2-2-2-2','','','2018-05-12 03:41:10','2018-05-12 02:41:10','',0,'http://tropofoto.com/?post_type=project&p=238',0,'project','',0),(239,1,'2018-05-12 03:41:34','2018-05-12 02:41:34','[vc_row overlay_opacity=\"\" css=\".vc_custom_1525943845451{padding-top: 70px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT ANALYSIS\" css=\".vc_custom_1525945892033{margin-bottom: 24px !important;}\"][vc_column_text css=\".vc_custom_1525946043836{margin-bottom: 14px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1525946130220{margin-bottom: 58px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_single_image image=\"222\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1525946244389{padding-top: 60px !important;}\"][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"PROJECT PLANS\" css=\".vc_custom_1525946353494{margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1525946308850{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_tta_accordion style=\"theme\" shape=\"round\" spacing=\"3\" active_section=\"1\" no_fill=\"true\"][vc_tta_section title=\"Create Unique Websites, Easily\" tab_id=\"1525944808245-b4fde4dd-685b\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Customize your site like no other theme on the market\" tab_id=\"1525944808305-68d1873b-666e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Great way to create the ideal site\" tab_id=\"1525944916023-de4aa7ef-8903\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"However you want to show off your work\" tab_id=\"1525944913737-b10f6f86-6c32\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row][vc_column][cms_custom_heading ttext-align=\"text-left\" title=\"SOLUTION\" css=\".vc_custom_1526028044583{margin-top: 40px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1526028110203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_single_image image=\"223\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526028142051{margin-top: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner css=\".vc_custom_1526091413182{padding-top: 72px !important;padding-bottom: 22px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091419237{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"1781\" counter_type=\"counter_image\" border=\"1\" c_title=\"Views\" cms_template=\"cms_counter_single.php\" image=\"226\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091424525{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"20\" suffix=\"%\" counter_type=\"counter_image\" border=\"1\" c_title=\"Conversion\" cms_template=\"cms_counter_single.php\" image=\"227\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091429973{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"391\" counter_type=\"counter_image\" border=\"1\" c_title=\"Sales\" cms_template=\"cms_counter_single.php\" image=\"228\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1526091436612{margin-bottom: 30px !important;}\"][cms_counter_single counter_style=\"style-1\" icon_fontawesome=\"fa fa-telegram\" digit=\"2909\" counter_type=\"counter_image\" border=\"\" c_title=\"Users\" cms_template=\"cms_counter_single.php\" image=\"229\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"225\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526091980877{margin-top: 70px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit Aliquam ultricies sapien ut lectus sollicitudin, vel ullamcorper nisl ultrices. Nulla malesuada, mauris finibus consequat vulputate.[/vc_column_text][vc_column_text css=\".vc_custom_1526091989411{margin-top: 25px !important;}\"]Morbi in elit urna. Fusce consequat mi erat, id euismod ex auctor at. Duis sed lacus condimentum, lobortis ex id, dignissim sem. Int eger et convallis ligula. Suspendisse viverra lacinia est, in dictum sapien tempor ac. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus sed ligula vel.[/vc_column_text][/vc_column][/vc_row]','What About Invest Plan','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','what-about-invest-plan-2-2-2-2-2-2-2-2-2-2','','','2018-05-12 03:41:34','2018-05-12 02:41:34','',0,'http://tropofoto.com/?post_type=project&p=239',0,'project','',0),(261,1,'2018-05-12 09:22:47','2018-05-12 08:22:47','','team1','','inherit','open','closed','','team1','','','2018-05-12 09:22:47','2018-05-12 08:22:47','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team1.jpg',0,'attachment','image/jpeg',0),(262,1,'2018-05-12 09:22:47','2018-05-12 08:22:47','','team2','','inherit','open','closed','','team2','','','2018-05-12 09:22:47','2018-05-12 08:22:47','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team2.jpg',0,'attachment','image/jpeg',0),(263,1,'2018-05-12 09:22:48','2018-05-12 08:22:48','','team3','','inherit','open','closed','','team3','','','2018-05-12 09:22:48','2018-05-12 08:22:48','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team3.jpg',0,'attachment','image/jpeg',0),(264,1,'2018-05-12 09:22:48','2018-05-12 08:22:48','','team4','','inherit','open','closed','','team4','','','2018-05-12 09:22:48','2018-05-12 08:22:48','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team4.jpg',0,'attachment','image/jpeg',0),(265,1,'2018-05-12 09:22:49','2018-05-12 08:22:49','','team5','','inherit','open','closed','','team5','','','2018-05-12 09:22:49','2018-05-12 08:22:49','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team5.jpg',0,'attachment','image/jpeg',0),(266,1,'2018-05-12 09:22:49','2018-05-12 08:22:49','','team6','','inherit','open','closed','','team6','','','2018-05-12 09:22:49','2018-05-12 08:22:49','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team6.jpg',0,'attachment','image/jpeg',0),(267,1,'2018-05-12 09:22:50','2018-05-12 08:22:50','','team7','','inherit','open','closed','','team7','','','2018-05-12 09:22:50','2018-05-12 08:22:50','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team7.jpg',0,'attachment','image/jpeg',0),(268,1,'2018-05-12 09:22:50','2018-05-12 08:22:50','','team8','','inherit','open','closed','','team8','','','2018-05-12 09:22:50','2018-05-12 08:22:50','',0,'http://tropofoto.com/wp-content/uploads/2018/05/team8.jpg',0,'attachment','image/jpeg',0),(269,1,'2018-05-12 10:35:56','2018-05-12 09:35:56','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','OLIVA JASTIS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','oliva-jastis','','','2018-05-12 10:35:56','2018-05-12 09:35:56','',0,'http://tropofoto.com/?post_type=team&p=269',0,'team','',0),(277,1,'2018-05-14 08:18:25','2018-05-14 07:18:25','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','JON RONKY','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','jon-ronky','','','2018-05-14 08:18:25','2018-05-14 07:18:25','',0,'http://tropofoto.com/?post_type=team&p=277',0,'team','',0),(278,1,'2018-05-14 08:20:42','2018-05-14 07:20:42','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','MERRI ALVAS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','merri-alvas','','','2018-05-14 08:20:42','2018-05-14 07:20:42','',0,'http://tropofoto.com/?post_type=team&p=278',0,'team','',0),(279,1,'2018-05-14 08:23:03','2018-05-14 07:23:03','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','SIMARIYA JAMES','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','simariya-james','','','2018-05-14 08:23:03','2018-05-14 07:23:03','',0,'http://tropofoto.com/?post_type=team&p=279',0,'team','',0),(280,1,'2018-05-14 08:24:49','2018-05-14 07:24:49','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','OLIVA JASTIS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','oliva-jastis-1','','','2018-05-14 08:24:49','2018-05-14 07:24:49','',0,'http://tropofoto.com/?post_type=team&p=280',0,'team','',0),(281,1,'2018-05-14 08:26:18','2018-05-14 07:26:18','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','POLL WALQAR','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','poll-walqar','','','2018-05-14 08:26:18','2018-05-14 07:26:18','',0,'http://tropofoto.com/?post_type=team&p=281',0,'team','',0),(282,1,'2018-05-14 08:27:37','2018-05-14 07:27:37','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','KILE WALKER','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','kile-walker','','','2018-05-14 08:27:37','2018-05-14 07:27:37','',0,'http://tropofoto.com/?post_type=team&p=282',0,'team','',0),(283,1,'2018-05-14 08:28:47','2018-05-14 07:28:47','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','QLARK JAKE','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','qlark-jake','','','2018-05-14 08:28:47','2018-05-14 07:28:47','',0,'http://tropofoto.com/?post_type=team&p=283',0,'team','',0),(284,1,'2018-05-14 08:31:17','2018-05-14 07:31:17','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','IRIS WELLSON','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','iris-wellson','','','2018-05-14 08:31:17','2018-05-14 07:31:17','',0,'http://tropofoto.com/?post_type=team&p=284',0,'team','',0),(285,1,'2018-05-14 08:32:15','2018-05-14 07:32:15','[vc_row css_animation=\"fadeIn\"][vc_column][cms_custom_heading title=\"DESCRIPTION\" css=\".vc_custom_1526265894633{margin-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526282296603{margin-bottom: 15px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][vc_column_text css=\".vc_custom_1526265976830{margin-bottom: 30px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.[/vc_column_text][vc_column_text color=\"#444444\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i>Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i>Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i>Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i>Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272088668{padding-top: 55px !important;padding-right: 15px !important;padding-left: 15px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1526270408418{padding-top: 50px !important;padding-bottom: 20px !important;background-image: url(http://tropofoto.com/wp-content/uploads/2018/04/bg-footer.png?id=88) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-5\"][cms_progressbar item_title=\"Digital Marketing\" value=\"55\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#82d10c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Branding Strategies\" value=\"45\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#0c6dd1\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-5\"][cms_progressbar item_title=\"Illustration Art\" value=\"75\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.1)\" value_suffix=\"%\" color=\"#d350cb\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][cms_progressbar item_title=\"Photography Tips\" value=\"30\" height=\"10px\" striped=\"no\" bg_color_bar=\"rgba(247,247,247,0.1)\" title_color=\"#ffffff\" bg_color=\"rgba(247,247,247,0.2)\" value_suffix=\"%\" color=\"#d1c50c\" cms_template=\"cms_progressbar.php\" border_radius=\"1em\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272100201{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272108049{padding-top: 45px !important;}\"][vc_column][cms_custom_heading title=\"PROVIDE SERVICES\" css=\".vc_custom_1526271457835{margin-bottom: 24px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1526271676612{margin-top: 38px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-headphones\" title_item=\"Customer Support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-umbrella\" title_item=\"Audit and Assurance\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-pie-chart\" title_item=\"International Business\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-cogs\" title_item=\"Financial Project\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_fontawesome=\"fa fa-sliders\" title_item=\"Strategic Planning\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"fadeIn\" overlay_opacity=\"\" css=\".vc_custom_1526272117750{padding-top: 50px !important;}\"][vc_column][cms_custom_heading title=\"BUSINESS PROJECT\" css=\".vc_custom_1526271992311{margin-bottom: 32px !important;}\"][zo_masonry col_xs=\"1\" col_sm=\"2\" col_md=\"3\" col_lg=\"3\" filter=\"0\" margin=\"6px\" ratio=\"1\" show_btn_full=\"1\" show_btn_link=\"1\" show_more=\"\" show_pagination=\"\" source=\"size:3|order_by:date|post_type:project\" cms_template=\"zo_masonry.php\"][/vc_column][/vc_row]','JAME MORRISON','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.','publish','closed','closed','','jame-morrison','','','2018-05-14 08:32:15','2018-05-14 07:32:15','',0,'http://tropofoto.com/?post_type=team&p=285',0,'team','',0),(307,1,'2018-05-21 03:56:52','2018-05-21 02:56:52','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Content Submission','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','content-submission','','','2018-05-21 03:56:52','2018-05-21 02:56:52','',0,'http://tropofoto.com/?post_type=service&p=307',0,'service','',0),(308,1,'2018-05-21 03:57:10','2018-05-21 02:57:10','','service1','','inherit','open','closed','','service1','','','2018-05-21 03:57:10','2018-05-21 02:57:10','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service1.png',0,'attachment','image/png',0),(309,1,'2018-05-21 03:57:10','2018-05-21 02:57:10','','service2','','inherit','open','closed','','service2','','','2018-05-21 03:57:10','2018-05-21 02:57:10','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service2.png',0,'attachment','image/png',0),(310,1,'2018-05-21 03:57:11','2018-05-21 02:57:11','','service3','','inherit','open','closed','','service3','','','2018-05-21 03:57:11','2018-05-21 02:57:11','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service3.png',0,'attachment','image/png',0),(311,1,'2018-05-21 03:57:11','2018-05-21 02:57:11','','service4','','inherit','open','closed','','service4','','','2018-05-21 03:57:11','2018-05-21 02:57:11','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service4.png',0,'attachment','image/png',0),(312,1,'2018-05-21 03:57:11','2018-05-21 02:57:11','','service5','','inherit','open','closed','','service5','','','2018-05-21 03:57:11','2018-05-21 02:57:11','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service5.png',0,'attachment','image/png',0),(313,1,'2018-05-21 03:57:12','2018-05-21 02:57:12','','service6','','inherit','open','closed','','service6','','','2018-05-21 03:57:12','2018-05-21 02:57:12','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service6.png',0,'attachment','image/png',0),(314,1,'2018-05-21 03:57:12','2018-05-21 02:57:12','','service7','','inherit','open','closed','','service7','','','2018-05-21 03:57:12','2018-05-21 02:57:12','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service7.png',0,'attachment','image/png',0),(315,1,'2018-05-21 03:57:12','2018-05-21 02:57:12','','service8','','inherit','open','closed','','service8','','','2018-05-21 03:57:12','2018-05-21 02:57:12','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service8.png',0,'attachment','image/png',0),(316,1,'2018-05-21 03:57:13','2018-05-21 02:57:13','','service9','','inherit','open','closed','','service9','','','2018-05-21 03:57:13','2018-05-21 02:57:13','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service9.png',0,'attachment','image/png',0),(317,1,'2018-05-21 03:57:13','2018-05-21 02:57:13','','service10','','inherit','open','closed','','service10','','','2018-05-21 03:57:13','2018-05-21 02:57:13','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service10.png',0,'attachment','image/png',0),(318,1,'2018-05-21 03:57:14','2018-05-21 02:57:14','','service11','','inherit','open','closed','','service11','','','2018-05-21 03:57:14','2018-05-21 02:57:14','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service11.png',0,'attachment','image/png',0),(319,1,'2018-05-21 03:57:14','2018-05-21 02:57:14','','service12','','inherit','open','closed','','service12','','','2018-05-21 03:57:14','2018-05-21 02:57:14','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service12.png',0,'attachment','image/png',0),(320,1,'2018-05-21 03:57:14','2018-05-21 02:57:14','','service13','','inherit','open','closed','','service13','','','2018-05-21 03:57:14','2018-05-21 02:57:14','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service13.png',0,'attachment','image/png',0),(321,1,'2018-05-21 03:57:15','2018-05-21 02:57:15','','service14','','inherit','open','closed','','service14','','','2018-05-21 03:57:15','2018-05-21 02:57:15','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service14.png',0,'attachment','image/png',0),(322,1,'2018-05-21 03:57:15','2018-05-21 02:57:15','','service15','','inherit','open','closed','','service15','','','2018-05-21 03:57:15','2018-05-21 02:57:15','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service15.png',0,'attachment','image/png',0),(323,1,'2018-05-21 03:57:15','2018-05-21 02:57:15','','service16','','inherit','open','closed','','service16','','','2018-05-21 03:57:15','2018-05-21 02:57:15','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service16.png',0,'attachment','image/png',0),(324,1,'2018-05-21 03:57:15','2018-05-21 02:57:15','','service17','','inherit','open','closed','','service17','','','2018-05-21 03:57:15','2018-05-21 02:57:15','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service17.png',0,'attachment','image/png',0),(325,1,'2018-05-21 03:57:16','2018-05-21 02:57:16','','service18','','inherit','open','closed','','service18','','','2018-05-21 03:57:16','2018-05-21 02:57:16','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service18.png',0,'attachment','image/png',0),(326,1,'2018-05-21 03:57:16','2018-05-21 02:57:16','','service19','','inherit','open','closed','','service19','','','2018-05-21 03:57:16','2018-05-21 02:57:16','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service19.png',0,'attachment','image/png',0),(327,1,'2018-05-21 03:57:16','2018-05-21 02:57:16','','service20','','inherit','open','closed','','service20','','','2018-05-21 03:57:16','2018-05-21 02:57:16','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service20.png',0,'attachment','image/png',0),(328,1,'2018-05-21 03:57:17','2018-05-21 02:57:17','','service21','','inherit','open','closed','','service21','','','2018-05-21 03:57:17','2018-05-21 02:57:17','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service21.png',0,'attachment','image/png',0),(329,1,'2018-05-21 03:57:17','2018-05-21 02:57:17','','service22','','inherit','open','closed','','service22','','','2018-05-21 03:57:17','2018-05-21 02:57:17','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service22.png',0,'attachment','image/png',0),(330,1,'2018-05-21 04:00:05','2018-05-21 03:00:05','','service_detail1','','inherit','open','closed','','service_detail1','','','2018-05-21 04:00:05','2018-05-21 03:00:05','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service_detail1.jpg',0,'attachment','image/jpeg',0),(331,1,'2019-12-10 09:41:11','2019-12-10 09:41:11','','flicker_8','','inherit','open','closed','','flicker_8','','','2019-12-10 09:41:11','2019-12-10 09:41:11','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_8.jpg',0,'attachment','image/jpeg',0),(332,1,'2018-05-21 07:55:38','2018-05-21 06:55:38','','service_detail2','','inherit','open','closed','','service_detail2','','','2018-05-21 07:55:38','2018-05-21 06:55:38','',0,'http://tropofoto.com/wp-content/uploads/2018/05/service_detail2.jpg',0,'attachment','image/jpeg',0),(333,1,'2018-05-21 09:21:21','2018-05-21 08:21:21','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Real Time Analytics','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','real-time-analytics-2','','','2018-05-21 09:21:21','2018-05-21 08:21:21','',0,'http://tropofoto.com/?post_type=service&p=333',0,'service','',0),(334,1,'2018-05-21 09:24:39','2018-05-21 08:24:39','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Engineering','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','engineering','','','2018-05-21 09:24:39','2018-05-21 08:24:39','',0,'http://tropofoto.com/?post_type=service&p=334',0,'service','',0),(335,1,'2018-05-21 09:25:50','2018-05-21 08:25:50','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Financial Services','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','financial-services','','','2018-05-21 09:25:50','2018-05-21 08:25:50','',0,'http://tropofoto.com/?post_type=service&p=335',0,'service','',0),(336,1,'2018-05-21 09:26:26','2018-05-21 08:26:26','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Custom Insight','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','custom-insight','','','2018-05-21 09:26:26','2018-05-21 08:26:26','',0,'http://tropofoto.com/?post_type=service&p=336',0,'service','',0),(337,1,'2018-05-21 09:27:02','2018-05-21 08:27:02','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Financial Analysis','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','financial-analysis','','','2018-05-21 09:27:02','2018-05-21 08:27:02','',0,'http://tropofoto.com/?post_type=service&p=337',0,'service','',0),(338,1,'2018-05-21 09:27:46','2018-05-21 08:27:46','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Reputation Management','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','reputation-management','','','2018-05-21 09:27:46','2018-05-21 08:27:46','',0,'http://tropofoto.com/?post_type=service&p=338',0,'service','',0),(339,1,'2018-05-21 09:28:21','2018-05-21 08:28:21','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Business Strategy','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','business-strategy','','','2018-05-21 09:28:21','2018-05-21 08:28:21','',0,'http://tropofoto.com/?post_type=service&p=339',0,'service','',0),(340,1,'2018-05-21 09:29:54','2018-05-21 08:29:54','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Agriculture','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','agriculture','','','2018-05-21 09:29:54','2018-05-21 08:29:54','',0,'http://tropofoto.com/?post_type=service&p=340',0,'service','',0),(341,1,'2018-05-21 09:30:58','2018-05-21 08:30:58','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Engineering','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','engineering-2','','','2018-05-21 09:30:58','2018-05-21 08:30:58','',0,'http://tropofoto.com/?post_type=service&p=341',0,'service','',0),(342,1,'2018-05-21 09:31:45','2018-05-21 08:31:45','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Financial Services','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','financial-services-2','','','2018-05-21 09:31:45','2018-05-21 08:31:45','',0,'http://tropofoto.com/?post_type=service&p=342',0,'service','',0),(343,1,'2018-05-21 09:32:27','2018-05-21 08:32:27','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','real time analytics','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','real-time-analytics','','','2018-05-21 09:32:27','2018-05-21 08:32:27','',0,'http://tropofoto.com/?post_type=service&p=343',0,'service','',0),(344,1,'2018-05-21 09:33:58','2018-05-21 08:33:58','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Content Submission','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','content-submission-2','','','2018-05-21 09:33:58','2018-05-21 08:33:58','',0,'http://tropofoto.com/?post_type=service&p=344',0,'service','',0),(345,1,'2018-05-21 09:34:53','2018-05-21 08:34:53','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','SEO Optimization','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','seo-optimization','','','2018-05-21 09:34:53','2018-05-21 08:34:53','',0,'http://tropofoto.com/?post_type=service&p=345',0,'service','',0),(346,1,'2018-05-21 09:36:29','2018-05-21 08:36:29','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Engineering Art','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','engineering-art','','','2018-05-21 09:36:29','2018-05-21 08:36:29','',0,'http://tropofoto.com/?post_type=service&p=346',0,'service','',0),(347,1,'2018-05-21 09:37:10','2018-05-21 08:37:10','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Cloud Computing','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','cloud-computing','','','2018-05-21 09:37:10','2018-05-21 08:37:10','',0,'http://tropofoto.com/?post_type=service&p=347',0,'service','',0),(348,1,'2018-05-21 09:37:49','2018-05-21 08:37:49','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Financial Services','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','financial-services-3','','','2018-05-21 09:37:49','2018-05-21 08:37:49','',0,'http://tropofoto.com/?post_type=service&p=348',0,'service','',0),(349,1,'2018-05-21 09:38:33','2018-05-21 08:38:33','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Social Media Marketing','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','social-media-marketing','','','2018-05-21 09:38:33','2018-05-21 08:38:33','',0,'http://tropofoto.com/?post_type=service&p=349',0,'service','',0),(350,1,'2018-05-21 09:39:18','2018-05-21 08:39:18','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Quility Services','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','quility-services','','','2018-05-21 09:39:18','2018-05-21 08:39:18','',0,'http://tropofoto.com/?post_type=service&p=350',0,'service','',0),(351,1,'2018-05-21 09:39:56','2018-05-21 08:39:56','[vc_row overlay_opacity=\"\" css=\".vc_custom_1526886357747{padding-top: 45px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526886684498{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890421471{padding-top: 50px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1529309777759{margin-top: 15px !important;padding-bottom: 15px !important;}\"][vc_column_text css=\".vc_custom_1526886828203{margin-bottom: 35px !important;}\"]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit ac osetceterue elit.[/vc_column_text][vc_single_image image=\"332\" img_size=\"full\" alignment=\"center\"][vc_column_text css=\".vc_custom_1526886850355{margin-top: 35px !important;}\"]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentes que et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1529309787709{margin-top: 15px !important;margin-bottom: 15px !important;}\"][contact-form-7 id=\"4\" title=\"Contact form Service 2\"][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1526890179782{padding-top: 30px !important;}\"][vc_column][vc_column_text]Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit Donec nec eros eget pellentesque dolorinterdum.[/vc_column_text][vc_column_text css=\".vc_custom_1526888318791{margin-top: 25px !important;}\"]Donec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eg et pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row]','Fast and Quick Result','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendu m a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue elit. Donec nec eros eget pellentesque dolorinterdum. Lorem ipsum dolor sit amet, consectetur ili adipiscing elit.','publish','closed','closed','','fast-and-quick-result','','','2018-05-21 09:39:56','2018-05-21 08:39:56','',0,'http://tropofoto.com/?post_type=service&p=351',0,'service','',0),(375,1,'2019-12-11 08:01:28','2019-12-11 08:01:28','','Logo_1@2x','','inherit','open','closed','','logo_12x','','','2019-12-11 08:01:28','2019-12-11 08:01:28','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/[email protected]',0,'attachment','image/png',0),(376,1,'2019-12-14 11:35:25','2019-12-14 11:35:25','','footer_logo','','inherit','open','closed','','footer_logo','','','2019-12-14 11:35:25','2019-12-14 11:35:25','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/footer_logo.png',0,'attachment','image/png',0),(382,1,'2019-12-15 05:32:48','2019-12-15 05:32:48','','logo','','inherit','open','closed','','logo-2','','','2019-12-15 05:32:48','2019-12-15 05:32:48','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/logo.jpg',0,'attachment','image/jpeg',0),(384,1,'2019-12-15 06:46:03','2019-12-15 06:46:03','','price_img_icon_1','','inherit','open','closed','','price_img_icon_1','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/price_img_icon_1.png',0,'attachment','image/png',0),(386,1,'2019-12-15 06:46:04','2019-12-15 06:46:04','','price_img_icon_3','','inherit','open','closed','','price_img_icon_3','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/price_img_icon_3.png',0,'attachment','image/png',0),(394,1,'2018-05-24 09:37:15','2018-05-24 08:37:15','','pricing2','','inherit','open','closed','','pricing2','','','2018-05-24 09:37:15','2018-05-24 08:37:15','',0,'http://tropofoto.com/wp-content/uploads/2018/05/pricing2.png',0,'attachment','image/png',0),(395,1,'2018-05-24 09:37:16','2018-05-24 08:37:16','','pricing3','','inherit','open','closed','','pricing3','','','2018-05-24 09:37:16','2018-05-24 08:37:16','',0,'http://tropofoto.com/wp-content/uploads/2018/05/pricing3.png',0,'attachment','image/png',0),(396,1,'2018-05-24 09:37:16','2018-05-24 08:37:16','','pricing1','','inherit','open','closed','','pricing1','','','2018-05-24 09:37:16','2018-05-24 08:37:16','',0,'http://tropofoto.com/wp-content/uploads/2018/05/pricing1.png',0,'attachment','image/png',0),(416,1,'2020-01-02 12:50:05','2020-01-02 12:50:05','','about_bg_two','','inherit','open','closed','','about_bg_two','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png',0,'attachment','image/png',0),(417,1,'2020-01-02 12:50:06','2020-01-02 12:50:06','','about_bg_one','','inherit','open','closed','','about_bg_one','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png',0,'attachment','image/png',0),(434,1,'2020-01-05 11:21:42','2020-01-05 11:21:42','','mamphis_four','','inherit','open','closed','','mamphis_four','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_four.png',0,'attachment','image/png',0),(436,1,'2020-01-05 11:22:43','2020-01-05 11:22:43','','mamphis_three','','inherit','open','closed','','mamphis_three','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png',0,'attachment','image/png',0),(438,1,'2018-05-25 11:05:35','2018-05-25 10:05:35','','bg1','','inherit','open','closed','','bg1','','','2018-05-25 11:05:35','2018-05-25 10:05:35','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg1.jpg',0,'attachment','image/jpeg',0),(444,1,'2020-01-05 12:05:27','2020-01-05 12:05:27','','project-08','','inherit','open','closed','','project-08','','','2020-01-05 12:05:27','2020-01-05 12:05:27','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/project-08.jpg',0,'attachment','image/jpeg',0),(461,1,'2020-01-06 06:24:54','2020-01-06 06:24:54','','clients_02','','inherit','open','closed','','clients_02','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_02.png',0,'attachment','image/png',0),(462,1,'2020-01-06 06:24:54','2020-01-06 06:24:54','','clients_03','','inherit','open','closed','','clients_03','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_03.png',0,'attachment','image/png',0),(463,1,'2020-01-06 06:24:55','2020-01-06 06:24:55','','clients_04','','inherit','open','closed','','clients_04','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_04.png',0,'attachment','image/png',0),(466,1,'2020-01-06 06:59:39','2020-01-06 06:59:39','','ring','','inherit','open','closed','','ring','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png',0,'attachment','image/png',0),(483,1,'2020-01-06 12:45:23','2020-01-06 12:45:23','','p_icon1','','inherit','open','closed','','p_icon1','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/p_icon1.png',0,'attachment','image/png',0),(484,1,'2020-01-06 12:45:24','2020-01-06 12:45:24','','p_icon2','','inherit','open','closed','','p_icon2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/p_icon2.png',0,'attachment','image/png',0),(485,1,'2020-01-06 12:45:24','2020-01-06 12:45:24','','p_icon3','','inherit','open','closed','','p_icon3','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/p_icon3.png',0,'attachment','image/png',0),(486,1,'2020-01-06 12:45:24','2020-01-06 12:45:24','','p_icon4','','inherit','open','closed','','p_icon4','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/p_icon4.png',0,'attachment','image/png',0),(490,1,'2020-01-06 13:20:56','2020-01-06 13:20:56','','email','','inherit','open','closed','','email','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/email.png',0,'attachment','image/png',0),(491,1,'2020-01-06 13:20:57','2020-01-06 13:20:57','','phone','','inherit','open','closed','','phone-3','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/phone.png',0,'attachment','image/png',0),(492,1,'2020-01-06 13:20:57','2020-01-06 13:20:57','','place','','inherit','open','closed','','place','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/place.png',0,'attachment','image/png',0),(498,1,'2020-01-07 14:05:01','2020-01-07 14:05:01','','blog_banner_img_two','','inherit','open','closed','','blog_banner_img_two','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/blog_banner_img_two.jpg',0,'attachment','image/jpeg',0),(502,1,'2020-01-08 06:58:31','2020-01-08 06:58:31','','page_banner','','inherit','open','closed','','page_banner','','','2020-01-08 06:58:31','2020-01-08 06:58:31','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/page_banner.jpg',0,'attachment','image/jpeg',0),(512,1,'2018-05-26 11:36:38','2018-05-26 10:36:38','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Single #1','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-single-1','','','2018-05-26 11:36:38','2018-05-26 10:36:38','',0,'http://tropofoto.com/?product=import-placeholder-for-woo-single-1',0,'product','',0),(513,1,'2018-05-26 11:36:39','2018-05-26 10:36:39','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Single #2','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-single-2','','','2018-05-26 11:36:39','2018-05-26 10:36:39','',0,'http://tropofoto.com/?product=import-placeholder-for-woo-single-2',0,'product','',0),(514,1,'2018-05-26 11:36:39','2018-05-26 10:36:39','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Album #1','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-album-1','','','2018-05-26 11:36:39','2018-05-26 10:36:39','',0,'http://tropofoto.com/?product=import-placeholder-for-woo-album-1',0,'product','',0),(515,1,'2018-05-26 11:36:39','2018-05-26 10:36:39','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Album #2','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-album-2','','','2018-05-26 11:36:39','2018-05-26 10:36:39','',0,'http://tropofoto.com/?product=import-placeholder-for-woo-album-2',0,'product','',0),(516,1,'2018-05-26 11:36:39','2018-05-26 10:36:39','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Album #3','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-album-3','','','2018-05-26 11:36:39','2018-05-26 10:36:39','',0,'http://tropofoto.com/?product=import-placeholder-for-woo-album-3',0,'product','',0),(517,1,'2018-05-26 11:36:39','2018-05-26 10:36:39','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Logo','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-logo-3','','','2018-05-26 11:36:39','2018-05-26 10:36:39','',0,'http://tropofoto.com/?product=import-placeholder-for-t-shirt-woo-logo',0,'product','',0),(519,1,'2018-05-26 11:36:39','2018-05-26 10:36:39','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Ninja','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-ninja-3','','','2018-05-26 11:36:39','2018-05-26 10:36:39','',0,'http://tropofoto.com/?product=import-placeholder-for-t-shirt-woo-ninja',0,'product','',0),(521,1,'2018-05-26 11:36:40','2018-05-26 10:36:40','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Premium Quality','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','premium-quality-2','','','2018-05-26 11:36:40','2018-05-26 10:36:40','',0,'http://tropofoto.com/?product=import-placeholder-for-t-shirt-premium-quality',0,'product','',0),(522,1,'2018-05-26 11:36:40','2018-05-26 10:36:40','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Ship Your Idea','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','ship-your-idea-3','','','2020-10-13 11:40:51','2020-10-13 11:40:51','',0,'http://tropofoto.com/?product=import-placeholder-for-t-shirt-ship-your-idea',0,'product','',1),(524,1,'2018-05-26 11:36:40','2018-05-26 10:36:40','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Ninja Silhouette','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','ninja-silhouette-2','','','2018-05-26 11:36:40','2018-05-26 10:36:40','',0,'http://tropofoto.com/?product=import-placeholder-for-t-shirt-ninja-silhouette',0,'product','',0),(525,1,'2018-05-26 11:36:40','2018-05-26 10:36:40','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Happy Ninja','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','happy-ninja-2','','','2020-10-13 11:40:51','2020-10-13 11:40:51','',0,'http://tropofoto.com/?product=import-placeholder-for-t-shirt-happy-ninja',0,'product','',1),(528,1,'2018-05-26 11:36:41','2018-05-26 10:36:41','','cd_6_angle.jpg','','inherit','open','closed','','cd_6_angle-jpg','','','2018-05-26 11:36:41','2018-05-26 10:36:41','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_6_angle.jpg',0,'attachment','image/jpeg',0),(529,1,'2018-05-26 11:36:42','2018-05-26 10:36:42','','cd_6_flat.jpg','','inherit','open','closed','','cd_6_flat-jpg','','','2018-05-26 11:36:42','2018-05-26 10:36:42','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_6_flat.jpg',0,'attachment','image/jpeg',0),(530,1,'2018-05-26 11:36:43','2018-05-26 10:36:43','','cd_4_angle.jpg','','inherit','open','closed','','cd_4_angle-jpg','','','2018-05-26 11:36:43','2018-05-26 10:36:43','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_4_angle.jpg',0,'attachment','image/jpeg',0),(531,1,'2018-05-26 11:36:44','2018-05-26 10:36:44','','cd_4_flat.jpg','','inherit','open','closed','','cd_4_flat-jpg','','','2018-05-26 11:36:44','2018-05-26 10:36:44','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_4_flat.jpg',0,'attachment','image/jpeg',0),(532,1,'2018-05-26 11:36:45','2018-05-26 10:36:45','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Singles','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-singles','','','2018-05-26 11:36:45','2018-05-26 10:36:45','',0,'http://tropofoto.com/?product=woo-singles',0,'product','',0),(533,1,'2018-05-26 11:36:46','2018-05-26 10:36:46','','cd_5_angle.jpg','','inherit','open','closed','','cd_5_angle-jpg','','','2018-05-26 11:36:46','2018-05-26 10:36:46','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_5_angle.jpg',0,'attachment','image/jpeg',0),(534,1,'2018-05-26 11:36:47','2018-05-26 10:36:47','','cd_5_flat.jpg','','inherit','open','closed','','cd_5_flat-jpg','','','2018-05-26 11:36:47','2018-05-26 10:36:47','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_5_flat.jpg',0,'attachment','image/jpeg',0),(535,1,'2018-05-26 11:36:47','2018-05-26 10:36:47','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Album #4','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-album-4','','','2018-05-26 11:36:47','2018-05-26 10:36:47','',0,'http://tropofoto.com/?product=woo-album-4',0,'product','',0),(536,1,'2018-05-26 11:36:48','2018-05-26 10:36:48','','cd_3_angle.jpg','','inherit','open','closed','','cd_3_angle-jpg','','','2018-05-26 11:36:48','2018-05-26 10:36:48','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_3_angle.jpg',0,'attachment','image/jpeg',0),(537,1,'2018-05-26 11:36:49','2018-05-26 10:36:49','','cd_3_flat.jpg','','inherit','open','closed','','cd_3_flat-jpg','','','2018-05-26 11:36:49','2018-05-26 10:36:49','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_3_flat.jpg',0,'attachment','image/jpeg',0),(538,1,'2018-05-26 11:36:50','2018-05-26 10:36:50','','cd_2_angle.jpg','','inherit','open','closed','','cd_2_angle-jpg','','','2018-05-26 11:36:50','2018-05-26 10:36:50','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_2_angle.jpg',0,'attachment','image/jpeg',0),(539,1,'2018-05-26 11:36:51','2018-05-26 10:36:51','','cd_2_flat.jpg','','inherit','open','closed','','cd_2_flat-jpg','','','2018-05-26 11:36:51','2018-05-26 10:36:51','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_2_flat.jpg',0,'attachment','image/jpeg',0),(540,1,'2018-05-26 11:36:52','2018-05-26 10:36:52','','cd_1_angle.jpg','','inherit','open','closed','','cd_1_angle-jpg','','','2018-05-26 11:36:52','2018-05-26 10:36:52','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_1_angle.jpg',0,'attachment','image/jpeg',0),(541,1,'2018-05-26 11:36:53','2018-05-26 10:36:53','','cd_1_flat.jpg','','inherit','open','closed','','cd_1_flat-jpg','','','2018-05-26 11:36:53','2018-05-26 10:36:53','',0,'http://tropofoto.com/wp-content/uploads/2018/05/cd_1_flat.jpg',0,'attachment','image/jpeg',0),(542,1,'2018-05-26 11:36:54','2018-05-26 10:36:54','','poster_5_up.jpg','','inherit','open','closed','','poster_5_up-jpg','','','2018-05-26 11:36:54','2018-05-26 10:36:54','',0,'http://tropofoto.com/wp-content/uploads/2018/05/poster_5_up.jpg',0,'attachment','image/jpeg',0),(543,1,'2018-05-26 11:36:55','2018-05-26 10:36:55','','Poster_5_flat.jpg','','inherit','open','closed','','poster_5_flat-jpg','','','2018-05-26 11:36:55','2018-05-26 10:36:55','',0,'http://tropofoto.com/wp-content/uploads/2018/05/Poster_5_flat.jpg',0,'attachment','image/jpeg',0),(544,1,'2018-05-26 11:36:56','2018-05-26 10:36:56','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Logo','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-logo','','','2018-05-26 11:36:56','2018-05-26 10:36:56','',0,'http://tropofoto.com/?product=woo-logo',0,'product','',0),(545,1,'2018-05-26 11:36:56','2018-05-26 10:36:56','','poster_4_up.jpg','','inherit','open','closed','','poster_4_up-jpg','','','2018-05-26 11:36:56','2018-05-26 10:36:56','',0,'http://tropofoto.com/wp-content/uploads/2018/05/poster_4_up.jpg',0,'attachment','image/jpeg',0),(546,1,'2018-05-26 11:36:57','2018-05-26 10:36:57','','Poster_4_flat.jpg','','inherit','open','closed','','poster_4_flat-jpg','','','2018-05-26 11:36:57','2018-05-26 10:36:57','',0,'http://tropofoto.com/wp-content/uploads/2018/05/Poster_4_flat.jpg',0,'attachment','image/jpeg',0),(547,1,'2018-05-26 11:36:58','2018-05-26 10:36:58','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Woo Ninja','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','woo-ninja','','','2018-05-26 11:36:58','2018-05-26 10:36:58','',0,'http://tropofoto.com/?product=woo-ninja',0,'product','',0),(548,1,'2018-05-26 11:36:58','2018-05-26 10:36:58','','poster_3_up.jpg','','inherit','open','closed','','poster_3_up-jpg','','','2018-05-26 11:36:58','2018-05-26 10:36:58','',0,'http://tropofoto.com/wp-content/uploads/2018/05/poster_3_up.jpg',0,'attachment','image/jpeg',0),(549,1,'2018-05-26 11:36:59','2018-05-26 10:36:59','','Poster_3_flat.jpg','','inherit','open','closed','','poster_3_flat-jpg','','','2018-05-26 11:36:59','2018-05-26 10:36:59','',0,'http://tropofoto.com/wp-content/uploads/2018/05/Poster_3_flat.jpg',0,'attachment','image/jpeg',0),(550,1,'2018-05-26 11:37:00','2018-05-26 10:37:00','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Premium Quality','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','premium-quality','','','2018-05-26 11:37:00','2018-05-26 10:37:00','',0,'http://tropofoto.com/?product=premium-quality',0,'product','',0),(551,1,'2018-05-26 11:37:01','2018-05-26 10:37:01','','poster_2_up.jpg','','inherit','open','closed','','poster_2_up-jpg','','','2018-05-26 11:37:01','2018-05-26 10:37:01','',0,'http://tropofoto.com/wp-content/uploads/2018/05/poster_2_up.jpg',0,'attachment','image/jpeg',0),(552,1,'2018-05-26 11:37:02','2018-05-26 10:37:02','','Poster_2_flat.jpg','','inherit','open','closed','','poster_2_flat-jpg','','','2018-05-26 11:37:02','2018-05-26 10:37:02','',0,'http://tropofoto.com/wp-content/uploads/2018/05/Poster_2_flat.jpg',0,'attachment','image/jpeg',0),(553,1,'2018-05-26 11:37:03','2018-05-26 10:37:03','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Flying Ninja','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','flying-ninja','','','2018-05-26 11:37:03','2018-05-26 10:37:03','',0,'http://tropofoto.com/?product=flying-ninja',0,'product','',0),(554,1,'2018-05-26 11:37:03','2018-05-26 10:37:03','','poster_1_up.jpg','','inherit','open','closed','','poster_1_up-jpg','','','2018-05-26 11:37:03','2018-05-26 10:37:03','',0,'http://tropofoto.com/wp-content/uploads/2018/05/poster_1_up.jpg',0,'attachment','image/jpeg',0),(555,1,'2018-05-26 11:37:04','2018-05-26 10:37:04','','Poster_1_flat.jpg','','inherit','open','closed','','poster_1_flat-jpg','','','2018-05-26 11:37:04','2018-05-26 10:37:04','',0,'http://tropofoto.com/wp-content/uploads/2018/05/Poster_1_flat.jpg',0,'attachment','image/jpeg',0),(556,1,'2018-05-26 11:37:05','2018-05-26 10:37:05','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Ship Your Idea','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','ship-your-idea','','','2018-05-26 11:37:05','2018-05-26 10:37:05','',0,'http://tropofoto.com/?product=ship-your-idea',0,'product','',0),(557,1,'2018-05-26 11:37:06','2018-05-26 10:37:06','','hoodie_6_front.jpg','','inherit','open','closed','','hoodie_6_front-jpg','','','2018-05-26 11:37:06','2018-05-26 10:37:06','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_6_front.jpg',0,'attachment','image/jpeg',0),(558,1,'2018-05-26 11:37:07','2018-05-26 10:37:07','','hoodie_6_back.jpg','','inherit','open','closed','','hoodie_6_back-jpg','','','2018-05-26 11:37:07','2018-05-26 10:37:07','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_6_back.jpg',0,'attachment','image/jpeg',0),(559,1,'2018-05-26 11:37:08','2018-05-26 10:37:08','','hoodie_5_front.jpg','','inherit','open','closed','','hoodie_5_front-jpg','','','2018-05-26 11:37:08','2018-05-26 10:37:08','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_5_front.jpg',0,'attachment','image/jpeg',0),(560,1,'2018-05-26 11:37:09','2018-05-26 10:37:09','','hoodie_5_back.jpg','','inherit','open','closed','','hoodie_5_back-jpg','','','2018-05-26 11:37:09','2018-05-26 10:37:09','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_5_back.jpg',0,'attachment','image/jpeg',0),(561,1,'2018-05-26 11:37:10','2018-05-26 10:37:10','','hoodie_4_front.jpg','','inherit','open','closed','','hoodie_4_front-jpg','','','2018-05-26 11:37:10','2018-05-26 10:37:10','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_4_front.jpg',0,'attachment','image/jpeg',0),(562,1,'2018-05-26 11:37:11','2018-05-26 10:37:11','','hoodie_4_back.jpg','','inherit','open','closed','','hoodie_4_back-jpg','','','2018-05-26 11:37:11','2018-05-26 10:37:11','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_4_back.jpg',0,'attachment','image/jpeg',0),(563,1,'2018-05-26 11:37:12','2018-05-26 10:37:12','','hoodie_3_front.jpg','','inherit','open','closed','','hoodie_3_front-jpg','','','2018-05-26 11:37:12','2018-05-26 10:37:12','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_3_front.jpg',0,'attachment','image/jpeg',0),(564,1,'2018-05-26 11:37:13','2018-05-26 10:37:13','','hoodie_3_back.jpg','','inherit','open','closed','','hoodie_3_back-jpg','','','2018-05-26 11:37:13','2018-05-26 10:37:13','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_3_back.jpg',0,'attachment','image/jpeg',0),(565,1,'2018-05-26 11:37:13','2018-05-26 10:37:13','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','Patient Ninja','Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.','publish','open','closed','','patient-ninja','','','2018-05-26 11:37:13','2018-05-26 10:37:13','',0,'http://tropofoto.com/?product=patient-ninja',0,'product','',0),(566,1,'2018-05-26 11:37:14','2018-05-26 10:37:14','','hoodie_2_front.jpg','','inherit','open','closed','','hoodie_2_front-jpg','','','2018-05-26 11:37:14','2018-05-26 10:37:14','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_2_front.jpg',0,'attachment','image/jpeg',0),(567,1,'2018-05-26 11:37:15','2018-05-26 10:37:15','','hoodie_2_back.jpg','','inherit','open','closed','','hoodie_2_back-jpg','','','2018-05-26 11:37:15','2018-05-26 10:37:15','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_2_back.jpg',0,'attachment','image/jpeg',0),(568,1,'2018-05-26 11:37:16','2018-05-26 10:37:16','','hoodie_7_front.jpg','','inherit','open','closed','','hoodie_7_front-jpg','','','2018-05-26 11:37:16','2018-05-26 10:37:16','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_7_front.jpg',0,'attachment','image/jpeg',0),(569,1,'2018-05-26 11:37:17','2018-05-26 10:37:17','','hoodie_7_back.jpg','','inherit','open','closed','','hoodie_7_back-jpg','','','2018-05-26 11:37:17','2018-05-26 10:37:17','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_7_back.jpg',0,'attachment','image/jpeg',0),(570,1,'2018-05-26 11:37:18','2018-05-26 10:37:18','','hoodie_1_back.jpg','','inherit','open','closed','','hoodie_1_back-jpg','','','2018-05-26 11:37:18','2018-05-26 10:37:18','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_1_back.jpg',0,'attachment','image/jpeg',0),(571,1,'2018-05-26 11:37:19','2018-05-26 10:37:19','','hoodie_1_front.jpg','','inherit','open','closed','','hoodie_1_front-jpg','','','2018-05-26 11:37:19','2018-05-26 10:37:19','',0,'http://tropofoto.com/wp-content/uploads/2018/05/hoodie_1_front.jpg',0,'attachment','image/jpeg',0),(572,1,'2018-05-26 11:37:21','2018-05-26 10:37:21','','Ship Your Idea - Blue, XL','Color: Blue, Size: XL','publish','closed','closed','','ship-your-idea-blue-xl','','','2018-05-26 11:37:21','2018-05-26 10:37:21','',522,'http://tropofoto.com/?product=ship-your-idea-2',0,'product_variation','',0),(573,1,'2018-05-26 11:37:21','2018-05-26 10:37:21','','Ship Your Idea - Black, L','Color: Black, Size: L','publish','closed','closed','','ship-your-idea-black-l','','','2018-05-26 11:37:21','2018-05-26 10:37:21','',522,'http://tropofoto.com/?product=ship-your-idea-2',0,'product_variation','',0),(574,1,'2018-05-26 11:37:22','2018-05-26 10:37:22','','T_7_front.jpg','','inherit','open','closed','','t_7_front-jpg','','','2018-05-26 11:37:22','2018-05-26 10:37:22','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_7_front.jpg',0,'attachment','image/jpeg',0),(575,1,'2018-05-26 11:37:23','2018-05-26 10:37:23','','T_7_back.jpg','','inherit','open','closed','','t_7_back-jpg','','','2018-05-26 11:37:23','2018-05-26 10:37:23','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_7_back.jpg',0,'attachment','image/jpeg',0),(576,1,'2018-05-26 11:37:24','2018-05-26 10:37:24','','T_6_front.jpg','','inherit','open','closed','','t_6_front-jpg','','','2018-05-26 11:37:24','2018-05-26 10:37:24','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_6_front.jpg',0,'attachment','image/jpeg',0),(577,1,'2018-05-26 11:37:25','2018-05-26 10:37:25','','T_6_back.jpg','','inherit','open','closed','','t_6_back-jpg','','','2018-05-26 11:37:25','2018-05-26 10:37:25','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_6_back.jpg',0,'attachment','image/jpeg',0),(578,1,'2018-05-26 11:37:26','2018-05-26 10:37:26','','T_5_front.jpg','','inherit','open','closed','','t_5_front-jpg','','','2018-05-26 11:37:26','2018-05-26 10:37:26','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_5_front.jpg',0,'attachment','image/jpeg',0),(579,1,'2018-05-26 11:37:27','2018-05-26 10:37:27','','T_5_back.jpg','','inherit','open','closed','','t_5_back-jpg','','','2018-05-26 11:37:27','2018-05-26 10:37:27','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_5_back.jpg',0,'attachment','image/jpeg',0),(580,1,'2018-05-26 11:37:28','2018-05-26 10:37:28','','T_4_front.jpg','','inherit','open','closed','','t_4_front-jpg','','','2018-05-26 11:37:28','2018-05-26 10:37:28','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_4_front.jpg',0,'attachment','image/jpeg',0),(581,1,'2018-05-26 11:37:29','2018-05-26 10:37:29','','T_3_back.jpg','','inherit','open','closed','','t_3_back-jpg','','','2018-05-26 11:37:29','2018-05-26 10:37:29','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_3_back.jpg',0,'attachment','image/jpeg',0),(582,1,'2018-05-26 11:37:30','2018-05-26 10:37:30','','T_3_front.jpg','','inherit','open','closed','','t_3_front-jpg','','','2018-05-26 11:37:30','2018-05-26 10:37:30','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_3_front.jpg',0,'attachment','image/jpeg',0),(583,1,'2018-05-26 11:37:31','2018-05-26 10:37:31','','T_4_back.jpg','','inherit','open','closed','','t_4_back-jpg','','','2018-05-26 11:37:31','2018-05-26 10:37:31','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_4_back.jpg',0,'attachment','image/jpeg',0),(584,1,'2018-05-26 11:37:32','2018-05-26 10:37:32','','T_4_front1.jpg','','inherit','open','closed','','t_4_front1-jpg','','','2018-05-26 11:37:32','2018-05-26 10:37:32','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_4_front1.jpg',0,'attachment','image/jpeg',0),(585,1,'2018-05-26 11:37:33','2018-05-26 10:37:33','','Ship Your Idea - Green','Color: Green','publish','closed','closed','','ship-your-idea-green','','','2018-05-26 11:37:33','2018-05-26 10:37:33','',522,'http://tropofoto.com/?product=ship-your-idea-3',0,'product_variation','',0),(586,1,'2018-05-26 11:37:33','2018-05-26 10:37:33','','Ship Your Idea - Black','Color: Black','publish','closed','closed','','ship-your-idea-black','','','2018-05-26 11:37:33','2018-05-26 10:37:33','',522,'http://tropofoto.com/?product=ship-your-idea-3',0,'product_variation','',0),(587,1,'2018-05-26 11:37:34','2018-05-26 10:37:34','','T_2_front.jpg','','inherit','open','closed','','t_2_front-jpg','','','2018-05-26 11:37:34','2018-05-26 10:37:34','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_2_front.jpg',0,'attachment','image/jpeg',0),(588,1,'2018-05-26 11:37:35','2018-05-26 10:37:35','','T_2_back.jpg','','inherit','open','closed','','t_2_back-jpg','','','2018-05-26 11:37:35','2018-05-26 10:37:35','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_2_back.jpg',0,'attachment','image/jpeg',0),(589,1,'2018-05-26 11:37:36','2018-05-26 10:37:36','','T_1_front.jpg','','inherit','open','closed','','t_1_front-jpg','','','2018-05-26 11:37:36','2018-05-26 10:37:36','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_1_front.jpg',0,'attachment','image/jpeg',0),(590,1,'2018-05-26 11:37:37','2018-05-26 10:37:37','','T_1_back.jpg','','inherit','open','closed','','t_1_back-jpg','','','2018-05-26 11:37:37','2018-05-26 10:37:37','',0,'http://tropofoto.com/wp-content/uploads/2018/05/T_1_back.jpg',0,'attachment','image/jpeg',0),(593,1,'2020-01-13 09:57:57','2020-01-13 09:57:57','','Home','','publish','closed','closed','','home','','','2020-10-15 09:10:07','2020-10-15 09:10:07','',0,'https://droitthemes.com/wp/zix/?p=593',1,'nav_menu_item','',0),(602,1,'2020-01-13 10:49:18','2020-01-13 10:49:18','','logo-page','','inherit','open','closed','','logo-page','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/logo-page.png',0,'attachment','image/png',0),(622,1,'2018-05-29 08:09:36','2018-05-29 07:09:36','','bg3','','inherit','open','closed','','bg3','','','2018-05-29 08:09:36','2018-05-29 07:09:36','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg3.jpg',0,'attachment','image/jpeg',0),(628,1,'2020-01-14 05:10:16','2020-01-14 05:10:16','','service_details','','inherit','open','closed','','service_details','','','2020-01-14 05:10:16','2020-01-14 05:10:16','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg',0,'attachment','image/jpeg',0),(630,1,'2018-05-29 08:49:25','2018-05-29 07:49:25','','bg2','','inherit','open','closed','','bg2','','','2018-05-29 08:49:25','2018-05-29 07:49:25','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg2.png',0,'attachment','image/png',0),(632,1,'2018-05-29 09:00:02','2018-05-29 08:00:02','','bg4','','inherit','open','closed','','bg4','','','2018-05-29 09:00:02','2018-05-29 08:00:02','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg4.jpg',0,'attachment','image/jpeg',0),(633,1,'2020-01-14 05:36:04','2020-01-14 05:36:04','<img width=\"90\" height=\"74\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-6.png\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-6.png 90w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6-50x40.png 50w\" sizes=\"(max-width: 90px) 100vw, 90px\" /> \n <h2>ADD DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','ADD DEVELOPMENT','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','add-development','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=633',0,'services','',0),(643,1,'2020-01-14 05:49:07','2020-01-14 05:49:07','<img width=\"82\" height=\"40\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/footer_logo.png\" alt=\"\" /> \n <p>Lorem ipsum dolor sit consectete eget orci dictum facili tellusLor or sit amet, consectetur Lorem sumi dictum facili tell us</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://youtube.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Youtube\n </a>\n <h2>Quick Links</h2> \n <ul>\n <li >\n <a href=\"#\"> \n Our Services\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Portfolio Page\n </a>\n </li>\n <li >\n <a href=\"#\"> \n About Us\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Pricing Plans\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Contact us\n </a>\n </li>\n </ul>\n <h2>Useful Links</h2> \n <ul>\n <li >\n <a href=\"#\"> \n Our Product\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Documentation\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Service Details\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Our Company\n </a>\n </li>\n <li >\n <a href=\"#\"> \n What We Do?\n </a>\n </li>\n </ul>\n <h2>Get in touch</h2> \n <ul>\n <li >\n Wave, Via Habro Derennio 22/b 52100 Arezzo, Italy\n </li>\n <li >\n [email protected]\n </li>\n <li >\n 095 1856 558 (Toll Free)\n </li>\n </ul>\n <p>Zix - Copyright 2020. Design by <a style=\"color: #ffffff;\" href=\"https://droitthemes.com\">DroitThemes</a></p>','Footer 01','','publish','closed','closed','','footer-01','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?post_type=footer&p=643',0,'footer','',0),(655,1,'2018-05-30 04:06:43','2018-05-30 03:06:43','','bg5','','inherit','open','closed','','bg5','','','2018-05-30 04:06:43','2018-05-30 03:06:43','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg5.jpg',0,'attachment','image/jpeg',0),(671,1,'2018-05-30 04:58:25','2018-05-30 03:58:25','','bg6','','inherit','open','closed','','bg6','','','2018-05-30 04:58:25','2018-05-30 03:58:25','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg6.png',0,'attachment','image/png',0),(674,1,'2018-05-30 08:18:52','2018-05-30 07:18:52','','testi2','','inherit','open','closed','','testi2','','','2018-05-30 08:18:52','2018-05-30 07:18:52','',0,'http://tropofoto.com/wp-content/uploads/2018/05/testi2.png',0,'attachment','image/png',0),(675,1,'2018-05-30 08:20:33','2018-05-30 07:20:33','','signature','','inherit','open','closed','','signature','','','2018-05-30 08:20:33','2018-05-30 07:20:33','',0,'http://tropofoto.com/wp-content/uploads/2018/05/signature.png',0,'attachment','image/png',0),(677,1,'2020-01-19 06:04:05','2020-01-19 06:04:05','','team_5','','inherit','open','closed','','team_5-2','','','2020-01-19 06:04:05','2020-01-19 06:04:05','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/team_5.jpg',0,'attachment','image/jpeg',0),(683,1,'2020-01-19 06:18:37','2020-01-19 06:18:37','','pr_details_1','','inherit','open','closed','','pr_details_1-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',94,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details_1-1.jpg',0,'attachment','image/jpeg',0),(685,1,'2020-01-19 06:21:18','2020-01-19 06:21:18','','pr_details2','','inherit','open','closed','','pr_details2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',94,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg',0,'attachment','image/jpeg',0),(687,1,'2018-05-30 09:16:12','2018-05-30 08:16:12','','bg7','','inherit','open','closed','','bg7','','','2018-05-30 09:16:12','2018-05-30 08:16:12','',0,'http://tropofoto.com/wp-content/uploads/2018/05/bg7.jpg',0,'attachment','image/jpeg',0),(688,1,'2020-01-19 06:28:00','2020-01-19 06:28:00','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>3D Abstract Posters</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','3D Abstract Posters','','publish','closed','closed','','3d-abstract-posters','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=688',0,'portfolio','',0),(689,1,'2020-01-19 06:29:36','2020-01-19 06:29:36','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','App Ui/UX & Development','','publish','closed','closed','','app-ui-ux-development-2','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=689',0,'portfolio','',0),(690,1,'2020-01-19 06:39:59','2020-01-19 06:39:59','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>3D Abstract Posters</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','3D Abstract Posters','','publish','closed','closed','','3d-abstract-posters-2','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=690',0,'portfolio','',0),(691,1,'2020-01-19 06:41:48','2020-01-19 06:41:48','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>T-Shirt Mockups Design</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','T-Shirt Mockups Design','','publish','closed','closed','','t-shirt-mockups-design','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=691',0,'portfolio','',0),(692,1,'2020-01-19 06:43:37','2020-01-19 06:43:37','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','From Scratch Design revamp','','publish','closed','closed','','from-scratch-design-revamp-2','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=692',0,'portfolio','',0),(693,1,'2020-01-19 06:46:09','2020-01-19 06:46:09','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>T-Shirt Mockups Design</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','T-Shirt Mockups Design','','publish','closed','closed','','t-shirt-mockups-design-2','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=693',0,'portfolio','',0),(732,1,'2020-01-20 07:00:48','2020-01-20 07:00:48','','clients_img','','inherit','open','closed','','clients_img','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_img.jpg',0,'attachment','image/jpeg',0),(753,1,'2018-06-01 08:11:42','2018-06-01 07:11:42','','bg8','','inherit','open','closed','','bg8','','','2018-06-01 08:11:42','2018-06-01 07:11:42','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg8.jpg',0,'attachment','image/jpeg',0),(754,1,'2018-06-01 08:11:48','2018-06-01 07:11:48','','bg9','','inherit','open','closed','','bg9','','','2018-06-01 08:11:48','2018-06-01 07:11:48','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg9.jpg',0,'attachment','image/jpeg',0),(777,1,'2020-01-21 09:13:22','2020-01-21 09:13:22','','slider-1','','inherit','open','closed','','slider-1','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/slider-1.jpg',0,'attachment','image/jpeg',0),(778,1,'2020-01-21 09:13:24','2020-01-21 09:13:24','','slider-2','','inherit','open','closed','','slider-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/slider-2.jpg',0,'attachment','image/jpeg',0),(802,1,'2020-01-22 09:15:17','2020-01-22 09:15:17','','ex_one','','inherit','open','closed','','ex_one','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ex_one.jpg',0,'attachment','image/jpeg',0),(803,1,'2020-01-22 09:15:17','2020-01-22 09:15:17','','ex_two','','inherit','open','closed','','ex_two','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ex_two.jpg',0,'attachment','image/jpeg',0),(806,1,'2020-01-22 09:46:01','2020-01-22 09:46:01','','dot_ex','','inherit','open','closed','','dot_ex','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/dot_ex.png',0,'attachment','image/png',0),(815,1,'2018-06-04 09:46:35','2018-06-04 08:46:35','','bg10','','inherit','open','closed','','bg10','','','2018-06-04 09:46:35','2018-06-04 08:46:35','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg10.jpg',0,'attachment','image/jpeg',0),(817,1,'2018-06-04 09:56:19','2018-06-04 08:56:19','','bg11','','inherit','open','closed','','bg11','','','2018-06-04 09:56:19','2018-06-04 08:56:19','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg11.png',0,'attachment','image/png',0),(819,1,'2020-01-22 13:12:37','2020-01-22 13:12:37','','round','','inherit','open','closed','','round-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/round-1.png',0,'attachment','image/png',0),(820,1,'2020-01-22 13:12:38','2020-01-22 13:12:38','','triangle','','inherit','open','closed','','triangle','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/triangle.png',0,'attachment','image/png',0),(826,1,'2020-01-23 07:42:31','2020-01-23 07:42:31','','question_img','','inherit','open','closed','','question_img','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/question_img.png',0,'attachment','image/png',0),(834,1,'2020-01-23 14:44:56','2020-01-23 14:44:56','','circle_round','','inherit','open','closed','','circle_round','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/circle_round.png',0,'attachment','image/png',0),(839,1,'2020-01-25 08:58:04','2020-01-25 08:58:04','','testimonial_bg','','inherit','open','closed','','testimonial_bg','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/testimonial_bg.jpg',0,'attachment','image/jpeg',0),(840,1,'2018-06-05 02:26:46','2018-06-05 01:26:46','','avatar2','','inherit','open','closed','','avatar2','','','2018-06-05 02:26:46','2018-06-05 01:26:46','',0,'http://tropofoto.com/wp-content/uploads/2018/06/avatar2.png',0,'attachment','image/png',0),(841,1,'2018-06-05 02:26:46','2018-06-05 01:26:46','','avatar3','','inherit','open','closed','','avatar3','','','2018-06-05 02:26:46','2018-06-05 01:26:46','',0,'http://tropofoto.com/wp-content/uploads/2018/06/avatar3.png',0,'attachment','image/png',0),(842,1,'2018-06-05 02:26:46','2018-06-05 01:26:46','','avatar4','','inherit','open','closed','','avatar4','','','2018-06-05 02:26:46','2018-06-05 01:26:46','',0,'http://tropofoto.com/wp-content/uploads/2018/06/avatar4.png',0,'attachment','image/png',0),(844,1,'2020-01-25 11:46:51','2020-01-25 11:46:51','','icon','','inherit','open','closed','','icon-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon.png',0,'attachment','image/png',0),(848,1,'2018-06-05 04:40:49','2018-06-05 03:40:49','','bg12','','inherit','open','closed','','bg12','','','2018-06-05 04:40:49','2018-06-05 03:40:49','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg12.jpg',0,'attachment','image/jpeg',0),(850,1,'2020-01-25 14:00:23','2020-01-25 14:00:23','<h2>OUR PROCESS</h2>\n<h2>Working Style</h2>\n<img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\">\n\n<section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\"{"x": 0, "y": 60}\">\n1\n<h3>Planning</h3>\nsem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\n\n2\n<h3>Designing</h3>\nsem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\n\n3\n<h3>Launch</h3>\nsem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.\n\n</section>\n<section>\n<h6>Get Idea</h6>\n<h2>Impressive Tips</h2>\n<img width=\"671\" height=\"545\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1.jpg 671w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-600x487.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-300x244.jpg 300w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-370x300.jpg 370w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-50x40.jpg 50w\" sizes=\"(max-width: 671px) 100vw, 671px\"><img width=\"671\" height=\"545\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1.jpg 671w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-600x487.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-300x244.jpg 300w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-370x300.jpg 370w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1-50x40.jpg 50w\" sizes=\"(max-width: 671px) 100vw, 671px\">\n<h5>Who we are</h5>\n<h2>We are Web Agency</h2>\nNullam bibendum odio a sem bibendum vesbulum odio a se rhoncus nisi sed, pulvinar ex Etiam sit amet libero il new ilim nec orci et facilisis rhoncus tempor.\n<ul>\n <li>Web App Development</li>\n <li>HTML5 Game Development</li>\n <li>Microsite Development</li>\n</ul>\n<h5>what you’ve got to offer</h5>\n<h2>We are Web Agency</h2>\nNullam bibendum odio a sem bibendum vesbulum odio a se rhoncus nisi sed, pulvinar ex Etiam sit amet libero il new ilim nec orci et facilisis rhoncus tempor.\n<ul>\n <li>Web App Development</li>\n <li>HTML5 Game Development</li>\n <li>Microsite Development</li>\n</ul>\n</section>\n<section>\n<h6>WHO WE ARE</h6>\n<h2>Company Services</h2>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\">\n<img width=\"470\" height=\"540\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_01-1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_01-1.jpg 470w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_01-1-261x300.jpg 261w\" sizes=\"(max-width: 470px) 100vw, 470px\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\">\n<h3>App Ui/UX &</h3>\n</a><a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development/\" title=\"App Ui/UX & Development\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio_cat/art/\"> art, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/creative/\"> creative</a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\">\n<img width=\"470\" height=\"420\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_02.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_02.jpg 470w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_02-300x268.jpg 300w\" sizes=\"(max-width: 470px) 100vw, 470px\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\">\n<h3>From Scratch Design</h3>\n</a><a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/from-scratch-design-revamp/\" title=\"From Scratch Design revamp\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio_cat/creative/\"> creative, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/web-design/\"> web design</a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\">\n<img width=\"470\" height=\"540\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_04.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_04.jpg 470w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_04-261x300.jpg 261w\" sizes=\"(max-width: 470px) 100vw, 470px\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\">\n<h3>3D Abstract Posters</h3>\n</a><a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters/\" title=\"3D Abstract Posters\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio_cat/creative/\"> creative, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/strategy/\"> strategy</a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\">\n<img width=\"470\" height=\"420\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_05.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_05.jpg 470w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_05-300x268.jpg 300w\" sizes=\"(max-width: 470px) 100vw, 470px\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\">\n<h3>App Ui/UX &</h3>\n</a><a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/app-ui-ux-development-2/\" title=\"App Ui/UX & Development\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio_cat/strategy/\"> strategy, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/web-design/\"> web design</a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\">\n<img width=\"470\" height=\"540\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_06.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_06.jpg 470w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_06-261x300.jpg 261w\" sizes=\"(max-width: 470px) 100vw, 470px\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\">\n<h3>3D Abstract Posters</h3>\n</a><a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/3d-abstract-posters-2/\" title=\"3D Abstract Posters\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio_cat/art/\"> art, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/web-design/\"> web design</a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\">\n<img width=\"470\" height=\"420\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_07.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_07.jpg 470w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/project_07-300x268.jpg 300w\" sizes=\"(max-width: 470px) 100vw, 470px\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\"></a>\n\n<a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\">\n<h3>T-Shirt Mockups Design</h3>\n</a><a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\"></a><a href=\"https://droitthemes.com/wp/zix/portfolio/t-shirt-mockups-design/\" title=\"T-Shirt Mockups Design\"> </a>\n<a href=\"https://droitthemes.com/wp/zix/portfolio_cat/creative/\"> creative, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/strategy/\"> strategy, </a> <a href=\"https://droitthemes.com/wp/zix/portfolio_cat/web-design/\"> web design</a>\n<a href=\"#\">View All Work</a>\n</section>\n<h2>Our Timeline</h2>\n<h2>Company History</h2>\n<img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\">\n\n<section>\n START 2017\n<img width=\"23\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1-1.png\" alt=\"\">\n<h3>Graphic Designer</h3>\n<h6>in Web company</h6>\nExcepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\n\n2018 - 2019\n<img width=\"23\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1-1.png\" alt=\"\">\n<h3>Graphic Designer</h3>\n<h6>in Web company</h6>\nExcepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\n\n2019 - 2020\n<img width=\"23\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1-1.png\" alt=\"\">\n<h3>Graphic Designer</h3>\n<h6>in Web company</h6>\nExcepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\n\nSTART 2020\n<img width=\"23\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1-1.png\" alt=\"\">\n<h3>Graphic Designer</h3>\n<h6>in Web company</h6>\nExcepteur sint occaecat cupidatat non proident dynamicus, qui sequitur mutationem consuetud notare quam littera gothica parum.\n\n</section>\n<section>\n Testimonial\n<ul>\n <li>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_img.jpg\" alt=\"Testimonial author\">\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon-1.png\" alt=\"Quote Icon\">\n<h3>Mark Tony</h3>\n<h6>Software Developer</h6>\nMinus minim! Corporis exercitation earum interdum molestiae consequat, beatae odio fringilla penatibus perferendis voluptas accusamus eiusmod dapibus elit quasi mollit, id illo convallis nam suscipit aperiam, ullam consequatur laborum.</li>\n <li>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_img.jpg\" alt=\"Testimonial author\">\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon-1.png\" alt=\"Quote Icon\">\n<h3>Mark Tony</h3>\n<h6>Software Developer</h6>\nMinus minim! Corporis exercitation earum interdum molestiae consequat, beatae odio fringilla penatibus perferendis voluptas accusamus eiusmod dapibus elit quasi mollit, id illo convallis nam suscipit aperiam, ullam consequatur laborum.</li>\n <li>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_img.jpg\" alt=\"Testimonial author\">\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon-1.png\" alt=\"Quote Icon\">\n<h3>Mark Tony</h3>\n<h6>Software Developer</h6>\nMinus minim! Corporis exercitation earum interdum molestiae consequat, beatae odio fringilla penatibus perferendis voluptas accusamus eiusmod dapibus elit quasi mollit, id illo convallis nam suscipit aperiam, ullam consequatur laborum.</li>\n</ul>\n</section> <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\">\n<img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\">\n<img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\">\n<img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\">\n<img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\">\n\n<section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/shap_circle-min.png\" alt=\"shape image\">\n<h2>Subscribe Today For New Updates</h2>\nSubscribe to our mailing list to get the updates to your email inbox...\n\n<form action=\"\" method=\"post\">\n <input type=\"text\" name=\"EMAIL\" placeholder=\"Type your email...\">\n<button type=\"submit\">\n<img width=\"40\" height=\"21\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/mail.png\" alt=\"\"> </button>\n<p style=\"display: none;\"></p>\n<p style=\"display: none;\"></p>\n\n</form>\n</section>','About','','publish','closed','closed','','about','','','2020-01-25 14:00:23','2020-01-25 14:00:23','',0,'https://droitthemes.com/wp/zix/?page_id=850',0,'page','',0),(857,1,'2020-01-26 07:12:00','2020-01-26 07:12:00','','tips_img1','','inherit','open','closed','','tips_img1','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/tips_img1.jpg',0,'attachment','image/jpeg',0),(859,1,'2018-06-05 05:07:48','2018-06-05 04:07:48','','bg13','','inherit','open','closed','','bg13','','','2018-06-05 05:07:48','2018-06-05 04:07:48','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg13.jpg',0,'attachment','image/jpeg',0),(870,1,'2020-01-26 11:42:09','2020-01-26 11:42:09','','icon1','','inherit','open','closed','','icon1-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1-1.png',0,'attachment','image/png',0),(871,1,'2020-01-26 11:42:09','2020-01-26 11:42:09','','icon2','','inherit','open','closed','','icon2-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon2-1.png',0,'attachment','image/png',0),(872,1,'2020-01-26 11:42:10','2020-01-26 11:42:10','','icon3','','inherit','open','closed','','icon3-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon3-1.png',0,'attachment','image/png',0),(873,1,'2020-01-26 11:42:10','2020-01-26 11:42:10','','icon4','','inherit','open','closed','','icon4-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon4-1.png',0,'attachment','image/png',0),(876,1,'2020-01-26 13:00:43','2020-01-26 13:00:43','','icon','','inherit','open','closed','','icon-3','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon-1.png',0,'attachment','image/png',0),(883,1,'2020-01-26 13:46:43','2020-01-26 13:46:43',' ','','','publish','closed','closed','','883','','','2020-10-15 09:10:07','2020-10-15 09:10:07','',0,'https://droitthemes.com/wp/zix/?p=883',2,'nav_menu_item','',0),(902,1,'2020-01-29 06:00:00','2020-01-29 06:00:00','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-3','','','2020-01-29 06:00:00','2020-01-29 06:00:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(909,1,'2020-01-29 06:40:17','2020-01-29 06:40:17','','product_1','','inherit','open','closed','','product_1','','','2020-01-29 06:40:17','2020-01-29 06:40:17','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_1.jpg',0,'attachment','image/jpeg',0),(910,1,'2020-01-29 06:40:18','2020-01-29 06:40:18','','product_2','','inherit','open','closed','','product_2','','','2020-01-29 06:40:18','2020-01-29 06:40:18','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_2.jpg',0,'attachment','image/jpeg',0),(911,1,'2020-01-29 06:40:19','2020-01-29 06:40:19','','product_3','','inherit','open','closed','','product_3','','','2020-01-29 06:40:19','2020-01-29 06:40:19','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_3.jpg',0,'attachment','image/jpeg',0),(912,1,'2020-01-29 06:40:19','2020-01-29 06:40:19','','product_4','','inherit','open','closed','','product_4','','','2020-01-29 06:40:19','2020-01-29 06:40:19','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_4.jpg',0,'attachment','image/jpeg',0),(913,1,'2020-01-29 06:40:20','2020-01-29 06:40:20','','product_5','','inherit','open','closed','','product_5','','','2020-01-29 06:40:20','2020-01-29 06:40:20','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_5.jpg',0,'attachment','image/jpeg',0),(914,1,'2020-01-29 06:40:21','2020-01-29 06:40:21','','product_6','','inherit','open','closed','','product_6','','','2020-01-29 06:40:21','2020-01-29 06:40:21','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_6.jpg',0,'attachment','image/jpeg',0),(915,1,'2020-01-29 06:40:21','2020-01-29 06:40:21','','product_7','','inherit','open','closed','','product_7','','','2020-01-29 06:40:21','2020-01-29 06:40:21','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_7.jpg',0,'attachment','image/jpeg',0),(916,1,'2020-01-29 06:40:22','2020-01-29 06:40:22','','product_8','','inherit','open','closed','','product_8','','','2020-01-29 06:40:22','2020-01-29 06:40:22','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_8.jpg',0,'attachment','image/jpeg',0),(917,1,'2020-01-29 06:40:22','2020-01-29 06:40:22','','product_9','','inherit','open','closed','','product_9','','','2020-01-29 06:40:22','2020-01-29 06:40:22','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_9.jpg',0,'attachment','image/jpeg',0),(918,1,'2020-01-29 06:40:23','2020-01-29 06:40:23','','product_10','','inherit','open','closed','','product_10','','','2020-01-29 06:40:23','2020-01-29 06:40:23','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_10.jpg',0,'attachment','image/jpeg',0),(919,1,'2020-01-29 06:40:24','2020-01-29 06:40:24','','product_11','','inherit','open','closed','','product_11','','','2020-01-29 06:40:24','2020-01-29 06:40:24','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_11.jpg',0,'attachment','image/jpeg',0),(920,1,'2020-01-29 06:40:25','2020-01-29 06:40:25','','product_12','','inherit','open','closed','','product_12','','','2020-01-29 06:40:25','2020-01-29 06:40:25','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_12.jpg',0,'attachment','image/jpeg',0),(924,1,'2020-02-02 09:21:08','2020-02-02 09:21:08','','product_img_n','','inherit','open','closed','','product_img_n','','','2020-02-02 09:21:08','2020-02-02 09:21:08','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/product_img_n.jpg',0,'attachment','image/jpeg',0),(933,1,'2018-06-06 11:07:02','2018-06-06 10:07:02','','bg14','','inherit','open','closed','','bg14','','','2018-06-06 11:07:02','2018-06-06 10:07:02','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg14.jpg',0,'attachment','image/jpeg',0),(936,1,'2020-02-10 11:33:08','2020-02-10 11:33:08','','clients_3','','inherit','open','closed','','clients_3','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_3.jpg',0,'attachment','image/jpeg',0),(937,1,'2020-02-10 11:33:09','2020-02-10 11:33:09','','clients_img2','','inherit','open','closed','','clients_img2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_img2.jpg',0,'attachment','image/jpeg',0),(959,1,'2020-02-11 09:36:03','2020-02-11 09:36:03','','cap-5','','inherit','open','closed','','cap-5','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',633,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-5.png',0,'attachment','image/png',0),(960,1,'2020-02-11 09:36:04','2020-02-11 09:36:04','','cap-6','','inherit','open','closed','','cap-6','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',633,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png',0,'attachment','image/png',0),(961,1,'2020-02-11 09:36:04','2020-02-11 09:36:04','','cap-4','','inherit','open','closed','','cap-4','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',633,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-4.png',0,'attachment','image/png',0),(962,1,'2020-02-11 09:36:05','2020-02-11 09:36:05','','cap-3','','inherit','open','closed','','cap-3','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',633,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-3.png',0,'attachment','image/png',0),(963,1,'2020-02-11 09:36:05','2020-02-11 09:36:05','','cap-2','','inherit','open','closed','','cap-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',633,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-2.png',0,'attachment','image/png',0),(964,1,'2020-02-11 09:36:06','2020-02-11 09:36:06','','cap-1','','inherit','open','closed','','cap-1','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',633,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-1.png',0,'attachment','image/png',0),(966,1,'2018-06-07 04:28:55','2018-06-07 03:28:55','','arrow2','','inherit','open','closed','','arrow2','','','2018-06-07 04:28:55','2018-06-07 03:28:55','',0,'http://tropofoto.com/wp-content/uploads/2018/06/arrow2.png',0,'attachment','image/png',0),(967,1,'2018-06-07 04:28:57','2018-06-07 03:28:57','','arrow1','','inherit','open','closed','','arrow1','','','2018-06-07 04:28:57','2018-06-07 03:28:57','',0,'http://tropofoto.com/wp-content/uploads/2018/06/arrow1.png',0,'attachment','image/png',0),(968,1,'2018-06-07 04:28:59','2018-06-07 03:28:59','','apolo','','inherit','open','closed','','apolo','','','2018-06-07 04:28:59','2018-06-07 03:28:59','',0,'http://tropofoto.com/wp-content/uploads/2018/06/apolo.png',0,'attachment','image/png',0),(971,1,'2020-02-11 10:07:40','2020-02-11 10:07:40','','clients_01','','inherit','open','closed','','clients_01-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png',0,'attachment','image/png',0),(972,1,'2020-02-11 10:07:41','2020-02-11 10:07:41','','clients_02','','inherit','open','closed','','clients_02-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png',0,'attachment','image/png',0),(973,1,'2020-02-11 10:07:42','2020-02-11 10:07:42','','clients_03','','inherit','open','closed','','clients_03-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png',0,'attachment','image/png',0),(974,1,'2020-02-11 10:07:42','2020-02-11 10:07:42','','clients_04','','inherit','open','closed','','clients_04-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png',0,'attachment','image/png',0),(975,1,'2020-02-11 10:07:43','2020-02-11 10:07:43','','clients_05','','inherit','open','closed','','clients_05-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png',0,'attachment','image/png',0),(976,1,'2018-06-07 09:52:10','2018-06-07 08:52:10','','bg-15','','inherit','open','closed','','bg-15','','','2018-06-07 09:52:10','2018-06-07 08:52:10','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg-15.jpg',0,'attachment','image/jpeg',0),(983,1,'2018-06-07 10:14:41','2018-06-07 09:14:41','','chart','','inherit','open','closed','','chart','','','2018-06-07 10:14:41','2018-06-07 09:14:41','',0,'http://tropofoto.com/wp-content/uploads/2018/06/chart.png',0,'attachment','image/png',0),(987,1,'2020-02-11 12:15:03','2020-02-11 12:15:03','','pr_details_1','','inherit','open','closed','','pr_details_1-3','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',688,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg',0,'attachment','image/jpeg',0),(990,1,'2020-02-11 12:18:16','2020-02-11 12:18:16','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>Top 100 digital art design</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>t cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n Envelope\n </a>','portfolio-post','','publish','closed','closed','','portfolio-post-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=portfolio-post-2',0,'elementor_library','',0),(1010,1,'2018-06-08 08:42:05','2018-06-08 07:42:05','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE IMPACT OF MUSIC ON OUR WELL BEING','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','the-impact-of-music-on-our-well-being','','','2018-06-08 08:42:05','2018-06-08 07:42:05','',0,'http://tropofoto.com/?post_type=case_studies&p=1010',0,'case_studies','',0),(1011,1,'2018-06-08 08:41:59','2018-06-08 07:41:59','','case1','','inherit','open','closed','','case1','','','2018-06-08 08:41:59','2018-06-08 07:41:59','',0,'http://tropofoto.com/wp-content/uploads/2018/06/case1.jpg',0,'attachment','image/jpeg',0),(1014,1,'2018-06-08 09:16:20','2018-06-08 08:16:20','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE ACCELERATOR COACHING PROGRAM FOR FRESHERS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','the-accelerator-coaching-program-for-freshers','','','2018-06-08 09:16:20','2018-06-08 08:16:20','',0,'http://tropofoto.com/?post_type=case_studies&p=1014',0,'case_studies','',0),(1015,1,'2018-06-08 09:15:59','2018-06-08 08:15:59','','case3','','inherit','open','closed','','case3','','','2018-06-08 09:15:59','2018-06-08 08:15:59','',0,'http://tropofoto.com/wp-content/uploads/2018/06/case3.jpg',0,'attachment','image/jpeg',0),(1016,1,'2018-06-08 09:16:00','2018-06-08 08:16:00','','case4','','inherit','open','closed','','case4','','','2018-06-08 09:16:00','2018-06-08 08:16:00','',0,'http://tropofoto.com/wp-content/uploads/2018/06/case4.jpg',0,'attachment','image/jpeg',0),(1017,1,'2018-06-08 09:16:01','2018-06-08 08:16:01','','case2','','inherit','open','closed','','case2','','','2018-06-08 09:16:01','2018-06-08 08:16:01','',0,'http://tropofoto.com/wp-content/uploads/2018/06/case2.jpg',0,'attachment','image/jpeg',0),(1018,1,'2018-06-08 09:17:15','2018-06-08 08:17:15','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','THE CHANGING SCENARIO IN MUSIC INDUSTRY','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','the-changing-scenario-in-music-industry-2','','','2018-06-08 09:17:15','2018-06-08 08:17:15','',0,'http://tropofoto.com/?post_type=case_studies&p=1018',0,'case_studies','',0),(1019,1,'2018-06-08 09:18:03','2018-06-08 08:18:03','[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.\n\nDonec id elit non mi porta gravida at eget metus Aenean lacinia Donec ullamco rper nulla non metus auctor fringill elit adipiscing Do nec nec eros eget pellentesque et non erat Maecenas nibh dolor males uada et bibendum a, sagi Etiam port[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819150618{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CHALLENGE\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246545854{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia. Donec ullamco rper nulla non metus auctor fringill elit.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1527324411336{margin-top: 60px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Engine & Social Media Optimization.\" css=\".vc_custom_1528082159705{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Expert in Search Engine.\" css=\".vc_custom_1528082170619{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"Always return e-mails and calls\" css=\".vc_custom_1528082211263{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolorinterdum. Donec id elit non mi porta gravida at eget metus. Aenean lacinia.\n\nmetus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" css=\".vc_custom_1524819156739{margin-top: 50px !important;}\"][vc_column][cms_custom_heading heading_style=\"style2\" media_type=\"icon\" icon_fontawesome=\"fa fa-cog\" show_icon=\"1\" add_border=\"1\" title=\"High customer retention rate.\" css=\".vc_custom_1528082225184{margin-bottom: 20px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet metus auctor fringill elit. It is a long established fact that a reader will be distracted by the readable content of a page when loo king at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"PROVIDE SERVICES\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246552915{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod...[/vc_column_text][vc_row_inner css=\".vc_custom_1525246233811{margin-top: 45px !important;}\"][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246240577{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Customer Support\" icon_flaticon=\"fi flaticon-support-1\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246245881{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Audit and Assurance\" icon_flaticon=\"fi flaticon-support-2\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246250961{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"International Business\" icon_flaticon=\"fi flaticon-pie-chart\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246263728{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Financial Project\" icon_flaticon=\"fi flaticon-support\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1525246258104{margin-bottom: 20px !important;}\"][cms_fancybox_single fancy_style=\"style-2\" icon_type=\"flaticon\" title_item=\"Strategic Planning\" icon_flaticon=\"fi flaticon-strategy\" color_icon=\"#82d10c\" border=\"1\"]<em>Business Service</em>[/cms_fancybox_single][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE SOLUTION\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246558156{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.\n\nThe solution was to introduce proper workload management done through computers, while providing mobile platforms to the The solution WP consulting came up with combined cutting edge technology with real world practicality.[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE RESULTS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525246645819{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_column_text css=\".vc_custom_1525247261166{margin-top: 32px !important;}\"]\n<ul class=\"case-list\">\n <li><i class=\"fa fa-check\"></i>A ornare odio ed non mauris vitae erat.</li>\n <li><i class=\"fa fa-check\"></i> Class aptent taciti sociosqu ad litora torquent</li>\n <li><i class=\"fa fa-check\"></i> Nullam ac urna eudapibus condimentum.</li>\n <li><i class=\"fa fa-check\"></i> Lowered the risk of back-order by 95%</li>\n <li><i class=\"fa fa-check\"></i> Increased stock for finished goods by 10%</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row][vc_row overlay_opacity=\"\" visible_overflow=\"true\" css=\".vc_custom_1525244566346{margin-top: 66px !important;}\"][vc_column][vc_custom_heading text=\"CASE VIEWS\" font_container=\"tag:h2|font_size:24px|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1525247335566{margin-bottom: 25px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagi cenasgue ut ultricies tristiq ege The solution WP consulting came up with combined cutting ed ge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way.[/vc_column_text][vc_single_image image=\"34\" img_size=\"full\" css=\".vc_custom_1525247443668{margin-top: 45px !important;}\"][/vc_column][/vc_row]','GOLF CLUBS ARE FOR MAKING BUSINESS DEALS','Lorem ipsum dolor sit amet, consectetur ili adipiscing elit. Donec nec eros eget pellentesque et non erat. Maecenas nibh dolor, males uada et bibendum a, sagi Etiam porta sem malesuada magna mollis euismod. Vivamus sagittis lacus vel augue laoreet rutrum faucibus lorimes sit acosetceterue dolorinterdum.','publish','closed','closed','','golf-clubs-are-for-making-business-deals','','','2018-06-08 09:18:03','2018-06-08 08:18:03','',0,'http://tropofoto.com/?post_type=case_studies&p=1019',0,'case_studies','',0),(1035,1,'2018-06-08 10:51:31','2018-06-08 09:51:31','','map','','inherit','open','closed','','map','','','2018-06-08 10:51:31','2018-06-08 09:51:31','',0,'http://tropofoto.com/wp-content/uploads/2018/06/map.png',0,'attachment','image/png',0),(1038,1,'2020-02-12 07:41:12','2020-02-12 07:41:12','<img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','Clients Logo','','publish','closed','closed','','clients-logo','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=clients-logo',0,'elementor_library','',0),(1042,1,'2020-02-12 07:42:31','2020-02-12 07:42:31','<img width=\"90\" height=\"74\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-6.png\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-6.png 90w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6-50x40.png 50w\" sizes=\"(max-width: 90px) 100vw, 90px\" /> \n <h2>ADD DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li>John Clark</li><li>2 Working Days</li><li>$220</li><li>High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p>','Service Single','','publish','closed','closed','','service-single','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=service-single',0,'elementor_library','',0),(1052,1,'2020-02-12 07:52:35','2020-02-12 07:52:35','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Alan Fresco</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Alan Fresco','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','alan-fresco','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1052',0,'team','',0),(1054,1,'2020-02-12 07:52:17','2020-02-12 07:52:17','','team_7','','inherit','open','closed','','team_7','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_7.jpg',0,'attachment','image/jpeg',0),(1055,1,'2020-02-12 07:52:17','2020-02-12 07:52:17','','team_8','','inherit','open','closed','','team_8','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_8.jpg',0,'attachment','image/jpeg',0),(1056,1,'2020-02-12 07:52:18','2020-02-12 07:52:18','','team_9','','inherit','open','closed','','team_9','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_9.jpg',0,'attachment','image/jpeg',0),(1057,1,'2020-02-12 07:52:19','2020-02-12 07:52:19','','team_10','','inherit','open','closed','','team_10','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_10.jpg',0,'attachment','image/jpeg',0),(1063,1,'2020-02-12 09:22:59','2020-02-12 09:22:59','','team_single','','inherit','open','closed','','team_single-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single.jpg',0,'attachment','image/jpeg',0),(1069,1,'2020-02-12 09:56:16','2020-02-12 09:56:16','','team-details','','inherit','open','closed','','team-details-2-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png',0,'attachment','image/png',0),(1080,1,'2020-02-12 10:02:09','2020-02-12 10:02:09','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Sue Shei</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Sue Shei','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','sue-shei','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1080',0,'team','',0),(1081,1,'2020-02-12 10:04:47','2020-02-12 10:04:47','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Sir Cumference</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Sir Cumference','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','sir-cumference','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1081',0,'team','',0),(1082,1,'2020-02-12 10:05:57','2020-02-12 10:05:57','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Valentino Morose</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Valentino Morose','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','valentino-morose','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1082',0,'team','',0),(1083,1,'2020-02-12 10:07:16','2020-02-12 10:07:16','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Parsley Montana</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Parsley Montana','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','parsley-montana','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1083',0,'team','',0),(1084,1,'2020-02-12 10:08:50','2020-02-12 10:08:50','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Rodney Artichoke</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Rodney Artichoke','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','rodney-artichoke','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1084',0,'team','',0),(1085,1,'2020-02-12 10:09:59','2020-02-12 10:09:59','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Nathaneal Down</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Nathaneal Down','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','nathaneal-down','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1085',0,'team','',0),(1086,1,'2020-02-12 10:11:01','2020-02-12 10:11:01','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Jim Séchen</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Jim Séchen','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','jim-sechen','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1086',0,'team','',0),(1087,1,'2018-06-11 04:55:40','2018-06-11 03:55:40','','project10','','inherit','open','closed','','project10','','','2018-06-11 04:55:40','2018-06-11 03:55:40','',0,'http://tropofoto.com/wp-content/uploads/2018/05/project10.png',0,'attachment','image/png',0),(1088,1,'2020-02-12 10:13:10','2020-02-12 10:13:10','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Giles Posture</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Giles Posture','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','giles-posture','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1088',0,'team','',0),(1110,1,'2020-02-12 10:36:49','2020-02-12 10:36:49','','1','','inherit','open','closed','','1','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1.jpg',0,'attachment','image/jpeg',0),(1111,1,'2020-02-12 10:36:50','2020-02-12 10:36:50','','2','','inherit','open','closed','','2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2.jpg',0,'attachment','image/jpeg',0),(1112,1,'2020-02-12 10:36:51','2020-02-12 10:36:51','','3','','inherit','open','closed','','3','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3.jpg',0,'attachment','image/jpeg',0),(1113,1,'2020-02-12 10:36:52','2020-02-12 10:36:52','','4','','inherit','open','closed','','4','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4.jpg',0,'attachment','image/jpeg',0),(1114,1,'2020-02-12 10:36:52','2020-02-12 10:36:52','','5','','inherit','open','closed','','5','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5.jpg',0,'attachment','image/jpeg',0),(1115,1,'2020-02-12 10:36:53','2020-02-12 10:36:53','','6','','inherit','open','closed','','6','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/6.jpg',0,'attachment','image/jpeg',0),(1116,1,'2020-02-12 10:36:54','2020-02-12 10:36:54','','7','','inherit','open','closed','','7','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7.jpg',0,'attachment','image/jpeg',0),(1117,1,'2020-02-12 10:36:55','2020-02-12 10:36:55','','8','','inherit','open','closed','','8','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8.jpg',0,'attachment','image/jpeg',0),(1118,1,'2020-02-12 10:36:55','2020-02-12 10:36:55','','9','','inherit','open','closed','','9','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9.jpg',0,'attachment','image/jpeg',0),(1119,1,'2020-02-12 10:36:56','2020-02-12 10:36:56','','10','','inherit','open','closed','','10','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',1052,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/10.jpg',0,'attachment','image/jpeg',0),(1147,1,'2020-02-12 12:30:17','2020-02-12 12:30:17','<img width=\"83\" height=\"80\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-5.png\" alt=\"\" /> \n <h2>PRODUCT MARKETING</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','PRODUCT MARKETING','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','product-marketing','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1147',0,'services','',0),(1148,1,'2020-02-12 12:31:39','2020-02-12 12:31:39','<img width=\"86\" height=\"69\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-4.png\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-4.png 86w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-4-50x40.png 50w\" sizes=\"(max-width: 86px) 100vw, 86px\" /> \n <h2>PRODUCT DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','PRODUCT DEVELOPMENT','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','product-development','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1148',0,'services','',0),(1149,1,'2020-02-12 12:32:37','2020-02-12 12:32:37','<img width=\"72\" height=\"80\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-3.png\" alt=\"\" /> \n <h2>WEB SOLUTIONS</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','WEB SOLUTIONS','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','web-solutions','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1149',0,'services','',0),(1150,1,'2020-02-12 12:33:50','2020-02-12 12:33:50','<img width=\"79\" height=\"79\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-2.png\" alt=\"\" /> \n <h2>BRANDING & IDENTITY</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','BRANDING & IDENTITY','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','branding-identity','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1150',0,'services','',0),(1151,1,'2020-02-12 12:34:45','2020-02-12 12:34:45','<img width=\"83\" height=\"80\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-1.png\" alt=\"\" /> \n <h2>UNIQUE DESIGN</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','UNIQUE DESIGN','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','unique-design','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1151',0,'services','',0),(1165,1,'2020-02-13 05:49:38','2020-02-13 05:49:38','<img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','logos','','publish','closed','closed','','logos','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=logos',0,'elementor_library','',0),(1207,1,'2020-02-13 13:14:47','2020-02-13 13:14:47','','blog_banner_img_two_','','inherit','open','closed','','blog_banner_img_two_','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/blog_banner_img_two_.jpg',0,'attachment','image/jpeg',0),(1213,1,'2020-02-13 13:19:03','2020-02-13 13:19:03','','img_4','','inherit','open','closed','','img_4','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/img_4.jpg',0,'attachment','image/jpeg',0),(1214,1,'2020-02-13 13:19:04','2020-02-13 13:19:04','','img_3','','inherit','open','closed','','img_3-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/img_3.jpg',0,'attachment','image/jpeg',0),(1215,1,'2020-02-13 13:19:05','2020-02-13 13:19:05','','img_2','','inherit','open','closed','','img_2-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/img_2.jpg',0,'attachment','image/jpeg',0),(1216,1,'2020-02-13 13:19:06','2020-02-13 13:19:06','','img_1','','inherit','open','closed','','img_1','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/img_1.jpg',0,'attachment','image/jpeg',0),(1279,1,'2018-06-18 08:50:13','2018-06-18 07:50:13','','chart4','','inherit','open','closed','','chart4','','','2018-06-18 08:50:13','2018-06-18 07:50:13','',0,'http://tropofoto.com/wp-content/uploads/2018/06/chart4.jpg',0,'attachment','image/jpeg',0),(1283,1,'2020-02-26 06:28:08','2020-02-26 06:28:08','','sticky-logo-2x','','inherit','open','closed','','sticky-logo-2x','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/sticky-logo-2x.png',0,'attachment','image/png',0),(1288,1,'2018-06-18 09:38:48','2018-06-18 08:38:48','','Happy Ninja - Black, Large','Color: Black, Size: Large','publish','closed','closed','','happy-ninja','','','2018-06-18 09:38:48','2018-06-18 08:38:48','',525,'http://tropofoto.com/?product=happy-ninja-2',5,'product_variation','',0),(1289,1,'2018-06-18 09:39:20','2018-06-18 08:39:20','','Happy Ninja - Blue, Medium','Color: Blue, Size: Medium','publish','closed','closed','','happy-ninja-2','','','2018-06-18 09:39:20','2018-06-18 08:39:20','',525,'http://tropofoto.com/?product=happy-ninja-2',1,'product_variation','',0),(1290,1,'2018-06-18 09:39:29','2018-06-18 08:39:29','','Happy Ninja - Green, Small','Color: Green, Size: Small','publish','closed','closed','','happy-ninja-3','','','2018-06-18 09:39:29','2018-06-18 08:39:29','',525,'http://tropofoto.com/?product=happy-ninja-2',0,'product_variation','',0),(1291,1,'2018-06-18 09:39:30','2018-06-18 08:39:30','','Happy Ninja - Black, Small','Color: Black, Size: Small','publish','closed','closed','','happy-ninja-4','','','2018-06-18 09:39:30','2018-06-18 08:39:30','',525,'http://tropofoto.com/?product=happy-ninja-2',0,'product_variation','',0),(1292,1,'2018-06-18 09:39:41','2018-06-18 08:39:41','','Happy Ninja - Blue, Small','Color: Blue, Size: Small','publish','closed','closed','','happy-ninja-5','','','2018-06-18 09:39:41','2018-06-18 08:39:41','',525,'http://tropofoto.com/?product=happy-ninja-2',0,'product_variation','',0),(1293,1,'2018-06-18 09:43:12','2018-06-18 08:43:12','','Flying Ninja - Black, Large','Color: Black, Size: Large','publish','closed','closed','','flying-ninja','','','2018-06-18 09:43:12','2018-06-18 08:43:12','',553,'http://tropofoto.com/?product=flying-ninja',1,'product_variation','',0),(1294,1,'2018-06-18 09:43:18','2018-06-18 08:43:18','','Flying Ninja - Blue, Large','Color: Blue, Size: Large','publish','closed','closed','','flying-ninja-2','','','2018-06-18 09:43:18','2018-06-18 08:43:18','',553,'http://tropofoto.com/?product=flying-ninja',2,'product_variation','',0),(1295,1,'2018-06-18 09:43:20','2018-06-18 08:43:20','','Flying Ninja - Green, Large','Color: Green, Size: Large','publish','closed','closed','','flying-ninja-3','','','2018-06-18 09:43:20','2018-06-18 08:43:20','',553,'http://tropofoto.com/?product=flying-ninja',0,'product_variation','',0),(1297,1,'2020-02-26 10:04:26','2020-02-26 10:04:26','','Default Kit','','publish','closed','closed','','default-kit-2','','','2020-02-26 10:04:26','2020-02-26 10:04:26','',0,'https://droitthemes.com/wp/zix/?elementor_library=default-kit',0,'elementor_library','',0),(1299,1,'2020-02-27 05:43:50','2020-02-27 05:43:50','<img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','Clients Logo 02','','publish','closed','closed','','clients-logo-02','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=clients-logo-02',0,'elementor_library','',0),(1302,1,'2020-02-27 05:44:22','2020-02-27 05:44:22','<img width=\"90\" height=\"74\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-6.png\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-6.png 90w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6-50x40.png 50w\" sizes=\"(max-width: 90px) 100vw, 90px\" /> \n <h2>ADD DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=<?php the_permalink(); ?>\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=<?php the_permalink() ?>\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink() ?>\"></a>','Service-details','','publish','closed','closed','','service-details','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=service-details',0,'elementor_library','',0),(1385,1,'2018-06-20 08:56:26','2018-06-20 07:56:26','','Order – June 20, 2018 @ 08:56 AM','66','wc-on-hold','open','closed','order_5b2a08aaaa5a0','order-jun-20-2018-0756-am','','','2018-06-20 08:56:26','2018-06-20 07:56:26','',0,'http://tropofoto.com/?post_type=shop_order&p=1385',0,'shop_order','',1),(1386,1,'2018-06-20 08:59:47','2018-06-20 07:59:47','','Order – June 20, 2018 @ 08:59 AM','','wc-on-hold','open','closed','order_5b2a09735c933','order-jun-20-2018-0759-am','','','2018-06-20 08:59:47','2018-06-20 07:59:47','',0,'http://tropofoto.com/?post_type=shop_order&p=1386',0,'shop_order','',1),(1412,1,'2020-03-02 06:18:51','2020-03-02 06:18:51','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','Portfolio-details','','publish','closed','closed','','portfolio-details','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=portfolio-details',0,'elementor_library','',0),(1441,1,'2020-03-02 07:18:36','2020-03-02 07:18:36','<img width=\"83\" height=\"80\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/cap-1.png\" alt=\"\" /> \n <h2>UNIQUE DESIGN</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=<?php the_permalink(); ?>\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=<?php the_permalink() ?>\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink() ?>\"></a>','services-details-last','','publish','closed','closed','','services-details-last','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=services-details-last',0,'elementor_library','',0),(1444,1,'2020-03-02 07:21:01','2020-03-02 07:21:01','<img width=\"178\" height=\"37\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','Clients Logo','','publish','closed','closed','','clients-logo-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=clients-logo-2',0,'elementor_library','',0),(1447,1,'2020-03-02 07:21:31','2020-03-02 07:21:31','<h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>','work process','','publish','closed','closed','','work-process-2','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=work-process-2',0,'elementor_library','',0),(1456,1,'2020-03-02 07:32:32','2020-03-02 07:32:32','<img width=\"440\" height=\"400\" src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>Rodney Artichoke</h2> \n <p>Web Developer</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>\n <p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!</p> \n <a href=\"#\"> Contact Us</a>','Team-details','','publish','closed','closed','','team-details','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=team-details',0,'elementor_library','',0),(1497,1,'2020-03-08 09:29:46','2020-03-08 09:29:46','','Vector Smart Object','','inherit','open','closed','','vector-smart-object','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/03/Vector-Smart-Object.jpg',0,'attachment','image/jpeg',0),(1531,1,'2018-06-26 08:23:39','2018-06-26 07:23:39','','avatar5','','inherit','open','closed','','avatar5','','','2018-06-26 08:23:39','2018-06-26 07:23:39','',0,'http://tropofoto.com/wp-content/uploads/2018/06/avatar5.jpg',0,'attachment','image/jpeg',0),(1533,1,'2018-06-26 09:59:51','2018-06-26 08:59:51','','bg-16','','inherit','open','closed','','bg-16','','','2018-06-26 09:59:51','2018-06-26 08:59:51','',0,'http://tropofoto.com/wp-content/uploads/2018/06/bg-16.jpg',0,'attachment','image/jpeg',0),(1557,1,'2020-04-30 12:42:09','2020-04-30 12:42:09','','favicon','','inherit','open','closed','','favicon','','','2020-04-30 12:42:09','2020-04-30 12:42:09','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/04/favicon.png',0,'attachment','image/png',0),(1565,1,'2018-06-27 09:27:39','2018-06-27 08:27:39','','step1','','inherit','open','closed','','step1','','','2018-06-27 09:27:39','2018-06-27 08:27:39','',0,'http://tropofoto.com/wp-content/uploads/2018/06/step1.png',0,'attachment','image/png',0),(1566,1,'2018-06-27 09:27:40','2018-06-27 08:27:40','','step2','','inherit','open','closed','','step2','','','2018-06-27 09:27:40','2018-06-27 08:27:40','',0,'http://tropofoto.com/wp-content/uploads/2018/06/step2.png',0,'attachment','image/png',0),(1567,1,'2018-06-27 09:27:40','2018-06-27 08:27:40','','step3','','inherit','open','closed','','step3','','','2018-06-27 09:27:40','2018-06-27 08:27:40','',0,'http://tropofoto.com/wp-content/uploads/2018/06/step3.png',0,'attachment','image/png',0),(1568,1,'2018-06-27 09:27:41','2018-06-27 08:27:41','','step4','','inherit','open','closed','','step4','','','2018-06-27 09:27:41','2018-06-27 08:27:41','',0,'http://tropofoto.com/wp-content/uploads/2018/06/step4.png',0,'attachment','image/png',0),(1569,1,'2018-06-27 09:27:41','2018-06-27 08:27:41','','step5','','inherit','open','closed','','step5','','','2018-06-27 09:27:41','2018-06-27 08:27:41','',0,'http://tropofoto.com/wp-content/uploads/2018/06/step5.png',0,'attachment','image/png',0),(1577,1,'2018-06-27 10:21:48','2018-06-27 09:21:48','','homepage-intro-image','','inherit','open','closed','','homepage-intro-image','','','2018-06-27 10:21:48','2018-06-27 09:21:48','',0,'http://tropofoto.com/wp-content/uploads/2018/06/homepage-intro-image.jpg',0,'attachment','image/jpeg',0),(1725,1,'2018-07-10 09:34:49','0000-00-00 00:00:00','à  sdgasd dstgas','new Service','sdagsd dsgasd','draft','closed','closed','','','','','2018-07-10 09:34:49','0000-00-00 00:00:00','',0,'http://tropofoto.com/?post_type=service&p=1725',0,'service','',0),(1743,1,'2018-08-30 10:09:00','2018-08-30 09:09:00','','Shuffle-5.1.2','','inherit','open','closed','','shuffle-5-1-2','','','2018-08-30 10:09:00','2018-08-30 09:09:00','',0,'http://tropofoto.com/wp-content/uploads/2018/08/Shuffle-5.1.2.zip',0,'attachment','application/zip',0),(1750,1,'2019-05-22 11:36:30','2019-05-22 10:36:30','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2','','','2019-05-22 11:36:30','2019-05-22 10:36:30','',0,'http://tropofoto.com/wp-content/uploads/woocommerce-placeholder.png',0,'attachment','image/png',0),(1815,1,'2020-10-13 11:40:58','2020-10-13 11:40:58','','9_a_background.jpg','','inherit','closed','closed','','9-a-background-jpg','','','2020-10-13 11:40:58','2020-10-13 11:40:58','',0,'http://tropofoto.com/wp-content/uploads/revslider/9_a_background.jpg',0,'attachment','image/jpeg',0),(1816,1,'2020-10-13 11:40:58','2020-10-13 11:40:58','','9_b_background.jpg','','inherit','closed','closed','','9-b-background-jpg','','','2020-10-13 11:40:58','2020-10-13 11:40:58','',0,'http://tropofoto.com/wp-content/uploads/revslider/9_b_background.jpg',0,'attachment','image/jpeg',0),(1817,1,'2020-10-13 11:40:58','2020-10-13 11:40:58','','9_c_background.jpg','','inherit','closed','closed','','9-c-background-jpg','','','2020-10-13 11:40:58','2020-10-13 11:40:58','',0,'http://tropofoto.com/wp-content/uploads/revslider/9_c_background.jpg',0,'attachment','image/jpeg',0),(1818,1,'2020-10-13 11:40:58','2020-10-13 11:40:58','','70_a-back.jpg','','inherit','closed','closed','','70-a-back-jpg','','','2020-10-13 11:40:58','2020-10-13 11:40:58','',0,'http://tropofoto.com/wp-content/uploads/revslider/70_a-back.jpg',0,'attachment','image/jpeg',0),(1819,1,'2020-10-13 11:40:58','2020-10-13 11:40:58','','70_b_back.jpg','','inherit','closed','closed','','70-b-back-jpg','','','2020-10-13 11:40:58','2020-10-13 11:40:58','',0,'http://tropofoto.com/wp-content/uploads/revslider/70_b_back.jpg',0,'attachment','image/jpeg',0),(1820,1,'2020-10-13 11:40:58','2020-10-13 11:40:58','','70_c_back.jpg','','inherit','closed','closed','','70-c-back-jpg','','','2020-10-13 11:40:58','2020-10-13 11:40:58','',0,'http://tropofoto.com/wp-content/uploads/revslider/70_c_back.jpg',0,'attachment','image/jpeg',0),(1821,1,'2020-10-13 11:40:59','2020-10-13 11:40:59','','18_a_background.jpg','','inherit','closed','closed','','18-a-background-jpg','','','2020-10-13 11:40:59','2020-10-13 11:40:59','',0,'http://tropofoto.com/wp-content/uploads/revslider/18_a_background.jpg',0,'attachment','image/jpeg',0),(1822,1,'2020-10-13 11:40:59','2020-10-13 11:40:59','','18_a_letters.png','','inherit','closed','closed','','18-a-letters-png','','','2020-10-13 11:40:59','2020-10-13 11:40:59','',0,'http://tropofoto.com/wp-content/uploads/revslider/18_a_letters.png',0,'attachment','image/png',0),(1823,1,'2020-10-13 11:40:59','2020-10-13 11:40:59','','18_b_background.jpg','','inherit','closed','closed','','18-b-background-jpg','','','2020-10-13 11:40:59','2020-10-13 11:40:59','',0,'http://tropofoto.com/wp-content/uploads/revslider/18_b_background.jpg',0,'attachment','image/jpeg',0),(1824,1,'2020-10-13 11:40:59','2020-10-13 11:40:59','','18_b_letters.png','','inherit','closed','closed','','18-b-letters-png','','','2020-10-13 11:40:59','2020-10-13 11:40:59','',0,'http://tropofoto.com/wp-content/uploads/revslider/18_b_letters.png',0,'attachment','image/png',0),(1825,1,'2020-10-13 11:40:59','2020-10-13 11:40:59','','18_c_background.jpg','','inherit','closed','closed','','18-c-background-jpg','','','2020-10-13 11:40:59','2020-10-13 11:40:59','',0,'http://tropofoto.com/wp-content/uploads/revslider/18_c_background.jpg',0,'attachment','image/jpeg',0),(1826,1,'2020-10-13 11:40:59','2020-10-13 11:40:59','','18_c_letters.png','','inherit','closed','closed','','18-c-letters-png','','','2020-10-13 11:40:59','2020-10-13 11:40:59','',0,'http://tropofoto.com/wp-content/uploads/revslider/18_c_letters.png',0,'attachment','image/png',0),(1829,1,'2020-10-13 11:57:25','2020-10-13 11:57:25','','Default Kit','','publish','closed','closed','','default-kit','','','2020-10-15 09:16:43','2020-10-15 09:16:43','',0,'http://tropofoto.com/?elementor_library=default-kit',0,'elementor_library','',0),(1830,1,'2020-10-13 11:59:07','2020-10-13 11:59:07','','One Click Demo Import - log_file_2020-10-13__11-59-07','','inherit','closed','closed','','one-click-demo-import-log_file_2020-10-13__11-59-07','','','2020-10-13 11:59:07','2020-10-13 11:59:07','',0,'http://tropofoto.com/wp-content/uploads/2020/10/log_file_2020-10-13__11-59-07.txt',0,'attachment','text/plain',0),(1831,1,'2019-12-03 13:14:17','2019-12-03 13:14:17','','service_dot','','inherit','open','closed','','service_dot','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png',0,'attachment','image/png',0),(1832,1,'2019-12-03 14:02:01','2019-12-03 14:02:01','','promo','','inherit','open','closed','','promo','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png',0,'attachment','image/png',0),(1833,1,'2019-12-05 10:29:24','2019-12-05 10:29:24','','icon','','inherit','open','closed','','icon','','','2019-12-05 10:29:24','2019-12-05 10:29:24','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/icon.png',0,'attachment','image/png',0),(1834,1,'2019-12-05 13:41:52','2019-12-05 13:41:52','','Logo_4@2x','','inherit','open','closed','','logo_42x','','','2019-12-05 13:41:52','2019-12-05 13:41:52','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/[email protected]',0,'attachment','image/png',0),(1835,1,'2019-12-08 12:14:32','2019-12-08 12:14:32','','service_bg','','inherit','open','closed','','service_bg','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_bg.jpg',0,'attachment','image/jpeg',0),(1836,1,'2019-12-08 14:05:12','2019-12-08 14:05:12','','service_details_icon','','inherit','open','closed','','service_details_icon','','','2019-12-08 14:05:12','2019-12-08 14:05:12','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details_icon.png',0,'attachment','image/png',0),(1837,1,'2019-12-09 10:46:12','2019-12-09 10:46:12','','team_1','','inherit','open','closed','','team_1','','','2019-12-09 10:46:12','2019-12-09 10:46:12','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_1.jpg',0,'attachment','image/jpeg',0),(1838,1,'2019-12-09 10:51:26','2019-12-09 10:51:26','','team_single','','inherit','open','closed','','team_single','','','2019-12-09 10:51:26','2019-12-09 10:51:26','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_single.jpg',0,'attachment','image/jpeg',0),(1839,1,'2019-12-10 07:23:21','2019-12-10 07:23:21','','phone','','inherit','open','closed','','phone','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/phone.png',0,'attachment','image/png',0),(1840,1,'2019-12-10 07:23:39','2019-12-10 07:23:39','','phone','','inherit','open','closed','','phone-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/phone-1.png',0,'attachment','image/png',0),(1841,1,'2019-12-10 07:28:21','2019-12-10 07:28:21','','mail','','inherit','open','closed','','mail-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/mail-1.png',0,'attachment','image/png',0),(1842,1,'2019-12-10 07:28:58','2019-12-10 07:28:58','','marker','','inherit','open','closed','','marker','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/marker.png',0,'attachment','image/png',0),(1843,1,'2019-12-10 09:41:08','2019-12-10 09:41:08','','flicker_1','','inherit','open','closed','','flicker_1','','','2019-12-10 09:41:08','2019-12-10 09:41:08','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_1.jpg',0,'attachment','image/jpeg',0),(1844,1,'2019-12-10 09:41:09','2019-12-10 09:41:09','','flicker_2','','inherit','open','closed','','flicker_2','','','2019-12-10 09:41:09','2019-12-10 09:41:09','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_2.jpg',0,'attachment','image/jpeg',0),(1845,1,'2019-12-10 09:41:09','2019-12-10 09:41:09','','flicker_3','','inherit','open','closed','','flicker_3','','','2019-12-10 09:41:09','2019-12-10 09:41:09','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_3.jpg',0,'attachment','image/jpeg',0),(1846,1,'2019-12-10 09:41:09','2019-12-10 09:41:09','','flicker_4','','inherit','open','closed','','flicker_4','','','2019-12-10 09:41:09','2019-12-10 09:41:09','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_4.jpg',0,'attachment','image/jpeg',0),(1847,1,'2019-12-10 09:41:10','2019-12-10 09:41:10','','flicker_5','','inherit','open','closed','','flicker_5','','','2019-12-10 09:41:10','2019-12-10 09:41:10','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_5.jpg',0,'attachment','image/jpeg',0),(1848,1,'2019-12-10 09:41:10','2019-12-10 09:41:10','','flicker_6','','inherit','open','closed','','flicker_6','','','2019-12-10 09:41:10','2019-12-10 09:41:10','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_6.jpg',0,'attachment','image/jpeg',0),(1849,1,'2019-12-10 09:41:10','2019-12-10 09:41:10','','flicker_7','','inherit','open','closed','','flicker_7','','','2019-12-10 09:41:10','2019-12-10 09:41:10','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_7.jpg',0,'attachment','image/jpeg',0),(1850,1,'2019-12-10 09:41:11','2019-12-10 09:41:11','','flicker_9','','inherit','open','closed','','flicker_9','','','2019-12-10 09:41:11','2019-12-10 09:41:11','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/flicker_9.jpg',0,'attachment','image/jpeg',0),(1851,1,'2019-12-10 11:31:29','2019-12-10 11:31:29','','team_1','','inherit','open','closed','','team_1-2','','','2019-12-10 11:31:29','2019-12-10 11:31:29','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_1-1.jpg',0,'attachment','image/jpeg',0),(1852,1,'2019-12-10 11:31:29','2019-12-10 11:31:29','','team_2','','inherit','open','closed','','team_2','','','2019-12-10 11:31:29','2019-12-10 11:31:29','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_2.jpg',0,'attachment','image/jpeg',0),(1853,1,'2019-12-10 11:31:30','2019-12-10 11:31:30','','team_3','','inherit','open','closed','','team_3','','','2019-12-10 11:31:30','2019-12-10 11:31:30','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_3.jpg',0,'attachment','image/jpeg',0),(1854,1,'2019-12-10 11:31:30','2019-12-10 11:31:30','','team_4','','inherit','open','closed','','team_4','','','2019-12-10 11:31:30','2019-12-10 11:31:30','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_4.jpg',0,'attachment','image/jpeg',0),(1855,1,'2019-12-10 11:31:31','2019-12-10 11:31:31','','team_5','','inherit','open','closed','','team_5','','','2019-12-10 11:31:31','2019-12-10 11:31:31','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_5.jpg',0,'attachment','image/jpeg',0),(1856,1,'2019-12-10 11:31:31','2019-12-10 11:31:31','','team_6','','inherit','open','closed','','team_6','','','2019-12-10 11:31:31','2019-12-10 11:31:31','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/team_6.jpg',0,'attachment','image/jpeg',0),(1857,1,'2019-12-15 06:46:03','2019-12-15 06:46:03','','price_img_icon_2','','inherit','open','closed','','price_img_icon_2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/price_img_icon_2.png',0,'attachment','image/png',0),(1858,1,'2020-01-06 06:24:54','2020-01-06 06:24:54','','clients_01','','inherit','open','closed','','clients_01','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/clients_01.png',0,'attachment','image/png',0),(1859,1,'2020-01-08 14:16:37','2020-01-08 14:16:37','','portfolio_bg','','inherit','open','closed','','portfolio_bg','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/portfolio_bg.png',0,'attachment','image/png',0),(1860,1,'2020-01-09 05:34:29','2020-01-09 05:34:29','','footer_logo','','inherit','open','closed','','footer_logo-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/footer_logo.png',0,'attachment','image/png',0),(1861,1,'2020-01-09 06:55:02','2020-01-09 06:55:02','','banner','','inherit','open','closed','','banner','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/banner.jpg',0,'attachment','image/jpeg',0),(1862,1,'2020-01-09 11:42:03','2020-01-09 11:42:03','','we_do_bg','','inherit','open','closed','','we_do_bg','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/we_do_bg.png',0,'attachment','image/png',0),(1863,1,'2020-01-09 12:38:07','2020-01-09 12:38:07','','icon1','','inherit','open','closed','','icon1','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1.png',0,'attachment','image/png',0),(1864,1,'2020-01-09 12:38:08','2020-01-09 12:38:08','','icon2','','inherit','open','closed','','icon2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon2.png',0,'attachment','image/png',0),(1865,1,'2020-01-09 12:38:08','2020-01-09 12:38:08','','icon3','','inherit','open','closed','','icon3','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon3.png',0,'attachment','image/png',0),(1866,1,'2020-01-09 12:38:08','2020-01-09 12:38:08','','icon4','','inherit','open','closed','','icon4','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon4.png',0,'attachment','image/png',0),(1867,1,'2020-01-09 13:49:19','2020-01-09 13:49:19','','round','','inherit','open','closed','','round','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/round.png',0,'attachment','image/png',0),(1868,1,'2020-01-12 05:42:48','2020-01-12 05:42:48','','video_bg','','inherit','open','closed','','video_bg','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/video_bg.jpg',0,'attachment','image/jpeg',0),(1869,1,'2020-01-13 10:22:47','2020-01-13 10:22:47','','logo','','inherit','open','closed','','logo-2-2','','','2020-10-13 12:00:59','2020-10-13 12:00:59','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/logo.png',0,'attachment','image/png',0),(1870,1,'2019-12-08 09:04:29','2019-12-08 09:04:29','<h2>WHAT COMPANY PROVIDE</h2> \n <h2>Company Services\n</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <figure><img width=\"51\" height=\"49\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/diamond.png\" alt=\"\" /></figure><h3>Unique Design</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"51\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/browser.png\" alt=\"\" /></figure><h3>BRANDING & IDENTITY</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"46\" height=\"51\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/settings.png\" alt=\"\" /></figure><h3>WEB SOLUTIONS</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"41\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/bar-chart.png\" alt=\"\" /></figure><h3>PRODUCT DEVELOPMENT</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"49\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/profits.png\" alt=\"\" /></figure><h3>PRODUCT MARKETING</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"42\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/sales.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/sales.png 51w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/sales-50x40.png 50w\" sizes=\"(max-width: 51px) 100vw, 51px\" /></figure><h3>ADD DEVELOPMENT</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <img width=\"142\" height=\"176\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" />','Services-section','','publish','closed','closed','','services-section','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=services-section',0,'elementor_library','',0),(1871,1,'2019-12-10 07:12:49','2019-12-10 07:12:49','','Contact-section','','publish','closed','closed','','contact-section','','','2019-12-10 07:12:49','2019-12-10 07:12:49','',0,'https://droitthemes.com/wp/zix/?elementor_library=contact-section',0,'elementor_library','',0),(1872,1,'2020-02-11 13:10:59','2020-02-11 13:10:59','<section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape image\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n <h2>The Best Agency For <br> your Business</h2><p>Nullam bibendum odio a sem bibendum, ut vestibulum ipsum porttitor nec orci et cursus. Vestibulum facilisis rhoncus tempor. Duis non ipsui nec orci et cursus. Vestibulum facilisis rhoncus tempor.</p> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/icon1.png\" alt=\"Counter Icon\">1600<p>Process Projects</p> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/icon2.png\" alt=\"Counter Icon\">1000<p>Awards Winner</p> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/icon3.png\" alt=\"Counter Icon\">1500<p>Complete Projects</p> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/icon4.png\" alt=\"Counter Icon\">1000<p>Successful Projects</p> \n </section>','Counter Section','','publish','closed','closed','','counter-section','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=counter-section',0,'elementor_library','',0),(1873,1,'2020-02-12 07:40:45','2020-02-12 07:40:45','<h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>','work process','','publish','closed','closed','','work-process','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/?elementor_library=work-process',0,'elementor_library','',0),(1874,1,'2020-02-26 06:56:35','2020-02-26 06:56:35','','Zix.@2x','','inherit','open','closed','','zix-2x','','','2020-10-13 12:01:00','2020-10-13 12:01:00','',0,'https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/[email protected]',0,'attachment','image/png',0),(1894,1,'2020-01-19 06:26:43','2020-01-19 06:26:43','<img width=\"440\" height=\"450\" src=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>From Scratch Design revamp</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"http://tropofoto.com/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','From Scratch Design revamp','','publish','closed','closed','','from-scratch-design-revamp','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=687',0,'portfolio','',0),(1895,1,'2020-02-12 10:12:04','2020-02-12 10:12:04','<img src=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"http://tropofoto.com/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Lance Bogrol</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"http://tropofoto.com/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"http://tropofoto.com/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Lance Bogrol','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','lance-bogrol','','','2020-10-13 12:01:01','2020-10-13 12:01:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1087',0,'team','',0),(1896,1,'2019-12-08 09:04:29','2019-12-08 09:04:29','<h2>WHAT COMPANY PROVIDE</h2> \n <h2>Company Services\n</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <figure><img width=\"51\" height=\"49\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/diamond.png\" alt=\"\" /></figure><h3>Unique Design</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"51\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/browser.png\" alt=\"\" /></figure><h3>BRANDING & IDENTITY</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"46\" height=\"51\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/settings.png\" alt=\"\" /></figure><h3>WEB SOLUTIONS</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"41\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/bar-chart.png\" alt=\"\" /></figure><h3>PRODUCT DEVELOPMENT</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"49\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/profits.png\" alt=\"\" /></figure><h3>PRODUCT MARKETING</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <figure><img width=\"51\" height=\"42\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/sales.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/sales.png 51w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/sales-50x40.png 50w\" sizes=\"(max-width: 51px) 100vw, 51px\" /></figure><h3>ADD DEVELOPMENT</h3><p>Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.</p> \n <img width=\"142\" height=\"176\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" />','Services-section','','inherit','closed','closed','','1870-revision-v1','','','2019-12-08 09:04:29','2019-12-08 09:04:29','',1870,'http://tropofoto.com/1870-revision-v1/',0,'revision','',0),(1897,1,'2020-02-11 12:18:16','2020-02-11 12:18:16','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>Top 100 digital art design</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>t cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n Envelope\n </a>','portfolio-post','','inherit','closed','closed','','990-revision-v1','','','2020-02-11 12:18:16','2020-02-11 12:18:16','',990,'http://tropofoto.com/990-revision-v1/',0,'revision','',0),(1898,1,'2020-02-11 13:10:59','2020-02-11 13:10:59','<section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape image\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n <h2>The Best Agency For <br> your Business</h2><p>Nullam bibendum odio a sem bibendum, ut vestibulum ipsum porttitor nec orci et cursus. Vestibulum facilisis rhoncus tempor. Duis non ipsui nec orci et cursus. Vestibulum facilisis rhoncus tempor.</p> \n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon1.png\" alt=\"Counter Icon\">1600<p>Process Projects</p> \n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon2.png\" alt=\"Counter Icon\">1000<p>Awards Winner</p> \n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon3.png\" alt=\"Counter Icon\">1500<p>Complete Projects</p> \n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/icon4.png\" alt=\"Counter Icon\">1000<p>Successful Projects</p> \n </section>','Counter Section','','inherit','closed','closed','','1872-revision-v1','','','2020-02-11 13:10:59','2020-02-11 13:10:59','',1872,'http://tropofoto.com/1872-revision-v1/',0,'revision','',0),(1899,1,'2020-02-12 07:40:45','2020-02-12 07:40:45','<h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>','work process','','inherit','closed','closed','','1873-revision-v1','','','2020-02-12 07:40:45','2020-02-12 07:40:45','',1873,'http://tropofoto.com/1873-revision-v1/',0,'revision','',0),(1900,1,'2020-02-12 07:41:12','2020-02-12 07:41:12','<img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','Clients Logo','','inherit','closed','closed','','1038-revision-v1','','','2020-02-12 07:41:12','2020-02-12 07:41:12','',1038,'http://tropofoto.com/1038-revision-v1/',0,'revision','',0),(1901,1,'2020-02-12 07:42:31','2020-02-12 07:42:31','<img width=\"90\" height=\"74\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png 90w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6-50x40.png 50w\" sizes=\"(max-width: 90px) 100vw, 90px\" /> \n <h2>ADD DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li>John Clark</li><li>2 Working Days</li><li>$220</li><li>High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p>','Service Single','','inherit','closed','closed','','1042-revision-v1','','','2020-02-12 07:42:31','2020-02-12 07:42:31','',1042,'http://tropofoto.com/1042-revision-v1/',0,'revision','',0),(1902,1,'2020-02-13 05:49:38','2020-02-13 05:49:38','<img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','logos','','inherit','closed','closed','','1165-revision-v1','','','2020-02-13 05:49:38','2020-02-13 05:49:38','',1165,'http://tropofoto.com/1165-revision-v1/',0,'revision','',0),(1903,1,'2020-02-27 05:43:50','2020-02-27 05:43:50','<img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','Clients Logo 02','','inherit','closed','closed','','1299-revision-v1','','','2020-02-27 05:43:50','2020-02-27 05:43:50','',1299,'http://tropofoto.com/1299-revision-v1/',0,'revision','',0),(1904,1,'2020-02-27 05:44:22','2020-02-27 05:44:22','<img width=\"90\" height=\"74\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png 90w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6-50x40.png 50w\" sizes=\"(max-width: 90px) 100vw, 90px\" /> \n <h2>ADD DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=<?php the_permalink(); ?>\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=<?php the_permalink() ?>\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink() ?>\"></a>','Service-details','','inherit','closed','closed','','1302-revision-v1','','','2020-02-27 05:44:22','2020-02-27 05:44:22','',1302,'http://tropofoto.com/1302-revision-v1/',0,'revision','',0),(1905,1,'2020-03-02 06:18:51','2020-03-02 06:18:51','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','Portfolio-details','','inherit','closed','closed','','1412-revision-v1','','','2020-03-02 06:18:51','2020-03-02 06:18:51','',1412,'http://tropofoto.com/1412-revision-v1/',0,'revision','',0),(1906,1,'2020-03-02 07:18:36','2020-03-02 07:18:36','<img width=\"83\" height=\"80\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-1.png\" alt=\"\" /> \n <h2>UNIQUE DESIGN</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=<?php the_permalink(); ?>\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=<?php the_permalink() ?>\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink() ?>\"></a>','services-details-last','','inherit','closed','closed','','1441-revision-v1','','','2020-03-02 07:18:36','2020-03-02 07:18:36','',1441,'http://tropofoto.com/1441-revision-v1/',0,'revision','',0),(1907,1,'2020-03-02 07:21:01','2020-03-02 07:21:01','<img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','Clients Logo','','inherit','closed','closed','','1444-revision-v1','','','2020-03-02 07:21:01','2020-03-02 07:21:01','',1444,'http://tropofoto.com/1444-revision-v1/',0,'revision','',0),(1908,1,'2020-03-02 07:21:31','2020-03-02 07:21:31','<h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>','work process','','inherit','closed','closed','','1447-revision-v1','','','2020-03-02 07:21:31','2020-03-02 07:21:31','',1447,'http://tropofoto.com/1447-revision-v1/',0,'revision','',0),(1909,1,'2020-03-02 07:32:32','2020-03-02 07:32:32','<img width=\"440\" height=\"400\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>Rodney Artichoke</h2> \n <p>Web Developer</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>\n <p>Why I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!</p> \n <a href=\"#\"> Contact Us</a>','Team-details','','inherit','closed','closed','','1456-revision-v1','','','2020-03-02 07:32:32','2020-03-02 07:32:32','',1456,'http://tropofoto.com/1456-revision-v1/',0,'revision','',0),(1995,1,'2020-10-13 12:08:27','2020-10-13 12:08:27','','One Click Demo Import - log_file_2020-10-13__12-08-27','','inherit','closed','closed','','one-click-demo-import-log_file_2020-10-13__12-08-27','','','2020-10-13 12:08:27','2020-10-13 12:08:27','',0,'http://tropofoto.com/wp-content/uploads/2020/10/log_file_2020-10-13__12-08-27.txt',0,'attachment','text/plain',0),(2000,1,'2020-01-14 05:49:07','2020-01-14 05:49:07','<img width=\"82\" height=\"40\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/footer_logo.png\" alt=\"\" /> \n <p>Lorem ipsum dolor sit consectete eget orci dictum facili tellusLor or sit amet, consectetur Lorem sumi dictum facili tell us</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://youtube.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Youtube\n </a>\n <h2>Quick Links</h2> \n <ul>\n <li >\n <a href=\"#\"> \n Our Services\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Portfolio Page\n </a>\n </li>\n <li >\n <a href=\"#\"> \n About Us\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Pricing Plans\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Contact us\n </a>\n </li>\n </ul>\n <h2>Useful Links</h2> \n <ul>\n <li >\n <a href=\"#\"> \n Our Product\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Documentation\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Service Details\n </a>\n </li>\n <li >\n <a href=\"#\"> \n Our Company\n </a>\n </li>\n <li >\n <a href=\"#\"> \n What We Do?\n </a>\n </li>\n </ul>\n <h2>Get in touch</h2> \n <ul>\n <li >\n Wave, Via Habro Derennio 22/b 52100 Arezzo, Italy\n </li>\n <li >\n [email protected]\n </li>\n <li >\n 095 1856 558 (Toll Free)\n </li>\n </ul>\n <p>Zix - Copyright 2020. Design by <a style=\"color: #ffffff;\" href=\"https://droitthemes.com\">DroitThemes</a></p>','Footer 01','','publish','closed','closed','','footer-01-2','','','2020-01-14 05:49:07','2020-01-14 05:49:07','',0,'https://droitthemes.com/wp/zix/?post_type=footer&p=643',0,'footer','',0),(2011,1,'2019-12-04 10:13:33','2019-12-04 10:13:33','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','App Ui/UX & Development','','publish','closed','closed','','app-ui-ux-development-3','','','2019-12-04 10:13:33','2019-12-04 10:13:33','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=94',0,'portfolio','',0),(2012,1,'2020-01-19 06:26:43','2020-01-19 06:26:43','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>From Scratch Design revamp</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','From Scratch Design revamp','','publish','closed','closed','','from-scratch-design-revamp-3','','','2020-01-19 06:26:43','2020-01-19 06:26:43','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=687',0,'portfolio','',0),(2013,1,'2020-01-19 06:28:00','2020-01-19 06:28:00','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>3D Abstract Posters</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','3D Abstract Posters','','publish','closed','closed','','3d-abstract-posters-3','','','2020-01-19 06:28:00','2020-01-19 06:28:00','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=688',0,'portfolio','',0),(2014,1,'2020-01-19 06:29:36','2020-01-19 06:29:36','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','App Ui/UX & Development','','publish','closed','closed','','app-ui-ux-development-2-2','','','2020-01-19 06:29:36','2020-01-19 06:29:36','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=689',0,'portfolio','',0),(2015,1,'2020-01-14 05:36:04','2020-01-14 05:36:04','<img width=\"90\" height=\"74\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6.png 90w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-6-50x40.png 50w\" sizes=\"(max-width: 90px) 100vw, 90px\" /> \n <h2>ADD DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/add-development/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','ADD DEVELOPMENT','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','add-development-2','','','2020-01-14 05:36:04','2020-01-14 05:36:04','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=633',0,'services','',0),(2016,1,'2020-01-19 06:39:59','2020-01-19 06:39:59','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>3D Abstract Posters</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','3D Abstract Posters','','publish','closed','closed','','3d-abstract-posters-2-2','','','2020-01-19 06:39:59','2020-01-19 06:39:59','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=690',0,'portfolio','',0),(2017,1,'2020-01-19 06:41:48','2020-01-19 06:41:48','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>T-Shirt Mockups Design</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','T-Shirt Mockups Design','','publish','closed','closed','','t-shirt-mockups-design-3','','','2020-01-19 06:41:48','2020-01-19 06:41:48','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=691',0,'portfolio','',0),(2018,1,'2020-01-19 06:43:37','2020-01-19 06:43:37','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>App Ui/UX & Development</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','From Scratch Design revamp','','publish','closed','closed','','from-scratch-design-revamp-2-2','','','2020-01-19 06:43:37','2020-01-19 06:43:37','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=692',0,'portfolio','',0),(2019,1,'2020-01-19 06:46:09','2020-01-19 06:46:09','<img width=\"440\" height=\"450\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1.jpg 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/pr_details_1-293x300.jpg 293w\" sizes=\"(max-width: 440px) 100vw, 440px\" /> \n <h2>T-Shirt Mockups Design</h2> \n <h2>creative, strategy, Art</h2> \n <h2>Date:</h2> \n 20 July 2018 \n <h2>By:</h2> \n John Carter \n <h2>Resulotion:</h2> \n 800x800 \n <h2>Video Quality:</h2> \n Full HD \n <p style=\"letter-spacing: -0.16px;\">Cupcake ipsum dolor sit amet soufflé. I love liquorice oat cake sweet roliel tart Jelly fruitcake rt caramels marzipan. Browni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame soufflé. I love liquorice oat cake jesms tiraisu jelly dashfruitcake tart caramels marzipan Browchocolate love snap ilHighness. You weren’t on any mercy mission this time ship The Tighten grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’r talking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzi lking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon cr</p>\n<p style=\"letter-spacing: -0.16px;\">grip, Tarkin, the more star systems will slip throug what do you What!? I don’t know what you’rlking about. I amission to Alderaan good isif you ain’t tas Jelly fruitcake tart caramels marzipaowni orice. I love tootsie roll bonbon croisnt. Chupa loream sesame amet soufflé.</p>\n<p><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/pr_details2.jpg\" alt=\"\" width=\"670\" height=\"375\"></p>\n<p>cake jesms tiracroisnt. Chupa loream sesame amet soufflé. I love liquorice oat cake jesms tira around to use Besid courage.</p> \n <a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Facebook-f\n </a>\n <a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Twitter\n </a>\n <a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\n Linkedin-in\n </a>','T-Shirt Mockups Design','','publish','closed','closed','','t-shirt-mockups-design-2-2','','','2020-01-19 06:46:09','2020-01-19 06:46:09','',0,'https://droitthemes.com/wp/zix/?post_type=portfolio&p=693',0,'portfolio','',0),(2020,1,'2020-02-12 07:52:35','2020-02-12 07:52:35','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Alan Fresco</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Alan Fresco','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','alan-fresco-2','','','2020-02-12 07:52:35','2020-02-12 07:52:35','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1052',0,'team','',0),(2021,1,'2020-02-12 10:02:09','2020-02-12 10:02:09','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Sue Shei</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Sue Shei','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','sue-shei-2','','','2020-02-12 10:02:09','2020-02-12 10:02:09','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1080',0,'team','',0),(2022,1,'2020-02-12 10:04:47','2020-02-12 10:04:47','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Sir Cumference</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Sir Cumference','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','sir-cumference-2','','','2020-02-12 10:04:47','2020-02-12 10:04:47','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1081',0,'team','',0),(2023,1,'2020-02-12 10:05:57','2020-02-12 10:05:57','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Valentino Morose</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Valentino Morose','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','valentino-morose-2','','','2020-02-12 10:05:57','2020-02-12 10:05:57','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1082',0,'team','',0),(2024,1,'2020-02-12 10:07:16','2020-02-12 10:07:16','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Parsley Montana</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Parsley Montana','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','parsley-montana-2','','','2020-02-12 10:07:16','2020-02-12 10:07:16','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1083',0,'team','',0),(2025,1,'2020-02-12 12:30:17','2020-02-12 12:30:17','<img width=\"83\" height=\"80\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-5.png\" alt=\"\" /> \n <h2>PRODUCT MARKETING</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/product-marketing/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','PRODUCT MARKETING','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','product-marketing-2','','','2020-02-12 12:30:17','2020-02-12 12:30:17','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1147',0,'services','',0),(2026,1,'2020-02-12 12:31:39','2020-02-12 12:31:39','<img width=\"86\" height=\"69\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-4.png\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-4.png 86w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-4-50x40.png 50w\" sizes=\"(max-width: 86px) 100vw, 86px\" /> \n <h2>PRODUCT DEVELOPMENT</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/product-development/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','PRODUCT DEVELOPMENT','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','product-development-2','','','2020-02-12 12:31:39','2020-02-12 12:31:39','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1148',0,'services','',0),(2027,1,'2020-02-12 12:32:37','2020-02-12 12:32:37','<img width=\"72\" height=\"80\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-3.png\" alt=\"\" /> \n <h2>WEB SOLUTIONS</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/web-solutions/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','WEB SOLUTIONS','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','web-solutions-2','','','2020-02-12 12:32:37','2020-02-12 12:32:37','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1149',0,'services','',0),(2028,1,'2020-02-12 12:33:50','2020-02-12 12:33:50','<img width=\"79\" height=\"79\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-2.png\" alt=\"\" /> \n <h2>BRANDING & IDENTITY</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/branding-identity/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','BRANDING & IDENTITY','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','branding-identity-2','','','2020-02-12 12:33:50','2020-02-12 12:33:50','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1150',0,'services','',0),(2029,1,'2020-02-12 12:34:45','2020-02-12 12:34:45','<img width=\"83\" height=\"80\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/cap-1.png\" alt=\"\" /> \n <h2>UNIQUE DESIGN</h2> \n <ul><li>Owner:</li><li>livery Time:</li><li>Service Cost:</li><li>Quality:</li></ul><ul><li style=\"text-align: left;\">John Clark</li><li style=\"text-align: left;\">2 Working Days</li><li style=\"text-align: left;\">$220</li><li style=\"text-align: left;\">High</li></ul> \n <img width=\"670\" height=\"375\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg\" alt=\"\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details.jpg 670w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-600x336.jpg 600w, https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_details-300x168.jpg 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" /> \n <p>Why I say old chap that is spiffing argy-bargy, bamboozled get stuffed mate car boot super burke tickety-boo blower, bum bag cor blimey guvnor a boot cuppa Eaton give us a bell. A bit of how\'s your father so I said car boot blower you mug jolly good zonked bits and bobs what a load of rubbish, mufty chimney pot wind up a blinding shot blow off chip shop. Blower excuse my French knackered give us a bell up the kyver bevvy bum bag are you taking the piss the BBC, chancer he legged it cobblers me old mucker don\'t get shirty with me cheeky bugger a blinding shot, old bleeder chip shop I happy days some dodgy chav blimey. Ummm I\'m telling get stuffed mate crikey it\'s your round posh porkies brown bread the BBC grub a, bamboozled Charles tomfoolery spiffing good time bobby bubble and squeak David naff, hanky panky Harry blow off say so I said a load of old tosh bodge geeza.</p><p>A load of old tosh up the kyver ruddy William in my flat at public school spiffing bloke sloshed argy-bargy, James Bond skive off Queen\'s English plastered Elizabeth me old mucker some dodgy chav the bee\'s knees barmy, blower dropped a clanger buggered what a plonker bleeder on your bike mate he lost his bottle it\'s your round. Arse blag golly gosh loo gosh are you taking the piss James Bond I, my good sir tickety-boo lost the plot</p> \n <a href=\"https://facebook.com/sharer/sharer.php?u=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <a href=\"https://www.pinterest.com/pin/create/button/?url=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <a href=\"https://twitter.com/intent/tweet?text=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://droitthemes.com/wp/zix/services/unique-design/\"></a>\n <h2>Our Process</h2> \n <h2>Working Style</h2> \n <img width=\"101\" height=\"6\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/title-br.png\" alt=\"\" /> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/ring.png\" alt=\"shape right\" data-parallax=\'{\"x\": 0, \"y\": 60}\'> \n 1 \n <h3>Planning</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 2 \n <h3>Designing</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n 3 \n <h3>Launch</h3><p>sem bibendum lorem utium vesti fac ilisis rhoncus tempor noulorci Vesti bulum facilisis tempor.</p> \n </section>\n <img width=\"178\" height=\"37\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_01.png\" alt=\"\" /> \n <img width=\"158\" height=\"46\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_02.png\" alt=\"\" /> \n <img width=\"146\" height=\"34\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_03.png\" alt=\"\" /> \n <img width=\"181\" height=\"38\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_04.png\" alt=\"\" /> \n <img width=\"131\" height=\"26\" src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/clients_05.png\" alt=\"\" />','UNIQUE DESIGN','Vestibulum vitae tellus nec dui dictum Nulla elit ex, viverra a eros ac, placerat Lorime ipsom dui nunc.','publish','closed','closed','','unique-design-2','','','2020-02-12 12:34:45','2020-02-12 12:34:45','',0,'https://droitthemes.com/wp/zix/?post_type=services&p=1151',0,'services','',0),(2030,1,'2020-02-12 10:08:50','2020-02-12 10:08:50','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Rodney Artichoke</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Rodney Artichoke','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','rodney-artichoke-2','','','2020-02-12 10:08:50','2020-02-12 10:08:50','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1084',0,'team','',0),(2031,1,'2020-02-12 10:09:59','2020-02-12 10:09:59','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Nathaneal Down</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Nathaneal Down','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','nathaneal-down-2','','','2020-02-12 10:09:59','2020-02-12 10:09:59','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1085',0,'team','',0),(2032,1,'2020-02-12 10:11:01','2020-02-12 10:11:01','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Jim Séchen</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Jim Séchen','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','jim-sechen-2','','','2020-02-12 10:11:01','2020-02-12 10:11:01','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1086',0,'team','',0),(2033,1,'2020-02-12 10:12:04','2020-02-12 10:12:04','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Lance Bogrol</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Lance Bogrol','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','lance-bogrol-2','','','2020-02-12 10:12:04','2020-02-12 10:12:04','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1087',0,'team','',0),(2034,1,'2020-02-12 10:13:10','2020-02-12 10:13:10','<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png\" sizes=\"(max-width: 440px) 100vw, 440px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details.png 440w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team-details-300x273.png 300w\" alt=\"\" width=\"440\" height=\"400\" />\r\n<h2>Giles Posture</h2>\r\nWeb Developer\r\n\r\n<a href=\"https://facebook.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nFacebook-f\r\n</a>\r\n<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nTwitter\r\n</a>\r\n<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nLinkedin-in\r\n</a>\r\n\r\nWhy I say old chap that is spiffing plastered cheeky, squiffy William boot posh bonnet blower a load of old tosh porkies, some dodgy chav horse play mufty do one arse over tit bleeder fanny around barney. Only a quid blag brilliant cobblers horse play, blimey bog-standard Charles happy days, bog wellies at public school. such a fibber blatant cracking goal.!\r\n\r\n<a href=\"#\"> Contact Us</a>\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/service_dot.png\" alt=\"\" width=\"142\" height=\"176\" />\r\nEducation (70%)\r\nThinking (45%)\r\nIdeas (23%)\r\n\r\n<section><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/mamphis_three.png\" alt=\"Background Object\" data-parallax=\"{"x": 0, "y": -150}\" />\r\n<h6>TEAM MEMBERS</h6>\r\n<h2>The Experts Team</h2>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/2-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Giles Posture</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/5-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Lance Bogrol</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/3-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Jim Séchen</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Nathaneal Down</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/team_single-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Rodney Artichoke</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>, <a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/4-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Parsley Montana</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/9-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Valentino Morose</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/8-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sir Cumference</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/7-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Sue Shei</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/web-developer/\" rel=\"tag\">Web-developer</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n<img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg\" sizes=\"(max-width: 250px) 100vw, 250px\" srcset=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-250x280.jpg 250w, https://droitthemes.com/wp/zix/wp-content/uploads/2020/02/1-248x278.jpg 248w\" alt=\"\" width=\"250\" height=\"280\" />\r\n<h5>Alan Fresco</h5>\r\n \r\n\r\n<a href=\"https://droitthemes.com/wp/zix/team_cat/ui-ux-design/\" rel=\"tag\">UI/UX Design</a>\r\n<ul>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n</ul>\r\n</section>','Giles Posture','Why I say old chap that is spiffing bum bag, quaint young delinquent a a load of old tosh loo David. Queen\'s English cheeky morish.!','publish','closed','closed','','giles-posture-2','','','2020-02-12 10:13:10','2020-02-12 10:13:10','',0,'https://droitthemes.com/wp/zix/?post_type=team&p=1088',0,'team','',0),(2036,1,'2020-10-13 12:12:44','2020-10-13 12:12:44','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\ntropofoto.com \"[your-subject]\"\ntropofoto.com <[email protected]>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on tropofoto.com (http://tropofoto.com)\[email protected]\nReply-To: [your-email]\n\n0\n0\n\ntropofoto.com \"[your-subject]\"\ntropofoto.com <[email protected]>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on tropofoto.com (http://tropofoto.com)\n[your-email]\nReply-To: [email protected]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2020-10-13 12:12:44','2020-10-13 12:12:44','',0,'http://tropofoto.com/?post_type=wpcf7_contact_form&p=2036',0,'wpcf7_contact_form','',0),(2037,1,'2020-10-13 12:13:30','2020-10-13 12:13:30','','One Click Demo Import - log_file_2020-10-13__12-13-30','','inherit','closed','closed','','one-click-demo-import-log_file_2020-10-13__12-13-30','','','2020-10-13 12:13:30','2020-10-13 12:13:30','',0,'http://tropofoto.com/wp-content/uploads/2020/10/log_file_2020-10-13__12-13-30.txt',0,'attachment','text/plain',0),(2038,1,'2019-12-08 10:58:59','2019-12-08 10:58:59',' ','','','publish','closed','closed','','217','','','2020-10-15 09:10:07','2020-10-15 09:10:07','',0,'https://droitthemes.com/wp/zix/?p=217',5,'nav_menu_item','',0),(2044,1,'2019-12-10 08:03:19','2019-12-10 08:03:19','','Blog','','publish','closed','closed','','blog','','','2019-12-10 08:03:19','2019-12-10 08:03:19','',0,'https://droitthemes.com/wp/zix/?page_id=322',0,'page','',0),(2057,1,'2020-10-15 09:04:49','2020-10-15 09:04:49','','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-10-15 09:04:49','2020-10-15 09:04:49','',0,'http://tropofoto.com/terms-and-conditions/',0,'page','',0),(2058,1,'2020-10-15 09:06:50','2020-10-15 09:06:50',' ','','','publish','closed','closed','','2058','','','2020-10-15 09:10:07','2020-10-15 09:10:07','',0,'http://tropofoto.com/?p=2058',3,'nav_menu_item','',0),(2059,1,'2020-10-15 09:06:50','2020-10-15 09:06:50',' ','','','publish','closed','closed','','2059','','','2020-10-15 09:10:07','2020-10-15 09:10:07','',0,'http://tropofoto.com/?p=2059',4,'nav_menu_item','',0),(2064,1,'2020-10-15 09:15:09','2020-10-15 09:15:09','http://tropofoto.com/wp-content/uploads/2020/01/cropped-cap-1.png','cropped-cap-1.png','','inherit','closed','closed','','cropped-cap-1-png','','','2020-10-15 09:15:09','2020-10-15 09:15:09','',0,'http://tropofoto.com/wp-content/uploads/2020/01/cropped-cap-1.png',0,'attachment','image/png',0),(2067,1,'2020-10-15 09:15:44','2020-10-15 09:15:44','','Default Kit','','inherit','closed','closed','','1829-revision-v1','','','2020-10-15 09:15:44','2020-10-15 09:15:44','',1829,'http://tropofoto.com/1829-revision-v1/',0,'revision','',0),(2076,1,'2020-10-15 09:50:52','2020-10-15 09:50:52','','depositphotos_82284046-stock-photo-roulette-wheel-background','','inherit','closed','closed','','depositphotos_82284046-stock-photo-roulette-wheel-background','','','2020-10-15 09:50:52','2020-10-15 09:50:52','',8,'http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg',0,'attachment','image/jpeg',0),(2080,1,'2020-10-15 09:56:07','2020-10-15 09:56:07','','william-hill-casino-1','','inherit','closed','closed','','william-hill-casino-1','','','2020-10-15 09:56:07','2020-10-15 09:56:07','',8,'http://tropofoto.com/wp-content/uploads/2020/10/william-hill-casino-1.jpg',0,'attachment','image/jpeg',0),(2087,1,'2020-10-15 10:15:35','2020-10-15 10:15:35','','A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1','','inherit','closed','closed','','a-perfect-guideline-by-bspin-to-play-live-european-roulette-1','','','2020-10-15 10:15:35','2020-10-15 10:15:35','',8,'http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1.jpg',0,'attachment','image/jpeg',0),(2088,1,'2020-10-15 10:15:38','2020-10-15 10:15:38','','casino-poker-cards-roulette-wheel-banner_91128-250','','inherit','closed','closed','','casino-poker-cards-roulette-wheel-banner_91128-250','','','2020-10-15 10:15:38','2020-10-15 10:15:38','',8,'http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250.jpg',0,'attachment','image/jpeg',0),(2089,1,'2020-10-15 10:15:41','2020-10-15 10:15:41','','plazafremont','','inherit','closed','closed','','plazafremont','','','2020-10-15 10:15:41','2020-10-15 10:15:41','',8,'http://tropofoto.com/wp-content/uploads/2020/10/plazafremont.jpg',0,'attachment','image/jpeg',0),(2090,1,'2020-10-15 10:20:14','2020-10-15 10:20:14','','A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)','','inherit','closed','closed','','a-perfect-guideline-by-bspin-to-play-live-european-roulette-1-1','','','2020-10-15 10:20:14','2020-10-15 10:20:14','',8,'http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1.jpg',0,'attachment','image/jpeg',0),(2091,1,'2020-10-15 10:20:17','2020-10-15 10:20:17','','casino-poker-cards-roulette-wheel-banner_91128-250','','inherit','closed','closed','','casino-poker-cards-roulette-wheel-banner_91128-250-2','','','2020-10-15 10:20:17','2020-10-15 10:20:17','',8,'http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1.jpg',0,'attachment','image/jpeg',0),(2092,1,'2020-10-15 10:20:21','2020-10-15 10:20:21','','plazafremont','','inherit','closed','closed','','plazafremont-2','','','2020-10-15 10:20:21','2020-10-15 10:20:21','',8,'http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1.jpg',0,'attachment','image/jpeg',0),(2095,1,'2020-10-15 10:22:53','2020-10-15 10:22:53','','gwjdsL','','inherit','closed','closed','','gwjdsl','','','2020-10-15 10:22:53','2020-10-15 10:22:53','',8,'http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL.jpg',0,'attachment','image/jpeg',0),(2099,1,'2020-10-15 10:31:17','2020-10-15 10:31:17',' ','','','publish','closed','closed','','2099','','','2020-10-15 10:31:17','2020-10-15 10:31:17','',0,'http://tropofoto.com/?p=2099',1,'nav_menu_item','',0),(2100,1,'2020-10-15 10:31:17','2020-10-15 10:31:17',' ','','','publish','closed','closed','','2100','','','2020-10-15 10:31:17','2020-10-15 10:31:17','',0,'http://tropofoto.com/?p=2100',4,'nav_menu_item','',0),(2101,1,'2020-10-15 10:31:17','2020-10-15 10:31:17',' ','','','publish','closed','closed','','2101','','','2020-10-15 10:31:17','2020-10-15 10:31:17','',0,'http://tropofoto.com/?p=2101',3,'nav_menu_item','',0),(2102,1,'2020-10-15 10:31:17','2020-10-15 10:31:17',' ','','','publish','closed','closed','','2102','','','2020-10-15 10:31:17','2020-10-15 10:31:17','',0,'http://tropofoto.com/?p=2102',2,'nav_menu_item','',0),(2103,1,'2020-10-22 05:35:02','2020-10-22 05:35:02','','banner_arabic_roulette_banner','','inherit','closed','closed','','banner_arabic_roulette_banner','','','2020-10-22 05:40:17','2020-10-22 05:40:17','',8,'http://tropofoto.com/wp-content/uploads/2020/10/banner_arabic_roulette_banner.png',0,'attachment','image/png',0),(2105,1,'2020-10-22 05:41:52','2020-10-22 05:41:52','','8f317ccea87f799d5cce9b4cdaa9f399','','inherit','closed','closed','','8f317ccea87f799d5cce9b4cdaa9f399','','','2020-10-22 05:41:52','2020-10-22 05:41:52','',8,'http://tropofoto.com/wp-content/uploads/2020/10/8f317ccea87f799d5cce9b4cdaa9f399.png',0,'attachment','image/png',0),(2112,1,'2020-10-22 06:17:11','2020-10-22 06:17:11','','speed-live-online-casino-andar-bahar-1-1-700x357','','inherit','closed','closed','','speed-live-online-casino-andar-bahar-1-1-700x357','','','2020-10-22 06:17:11','2020-10-22 06:17:11','',8,'http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png',0,'attachment','image/png',0),(2128,1,'2020-10-29 05:49:51','2020-10-29 05:49:51','','casino','','inherit','closed','closed','','casino','','','2020-10-29 05:49:51','2020-10-29 05:49:51','',8,'http://tropofoto.com/wp-content/uploads/2020/10/casino.png',0,'attachment','image/png',0),(2132,1,'2020-10-29 05:56:56','2020-10-29 05:56:56','','casino-dice','','inherit','closed','closed','','casino-dice','','','2020-10-29 05:56:56','2020-10-29 05:56:56','',8,'http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png',0,'attachment','image/png',0),(2136,1,'2020-10-30 11:12:08','2020-10-30 11:12:08','<section>\n <h2>The Most Tropical Looking Casino?</h2> \n <img data-depth=\"0.5\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png\" alt=\"Featured Object image\"><img data-parallax=\'{\"x\": 0, \"y\": 60}\' src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino.png\" alt=\"Featured Image\"> \n </section> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png\" alt=\"background shape image\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png\" alt=\"background shape image\"> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\" alt=\"about featured\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png\" alt=\"about object image\"> Explore 15+ Casino \n <h2 data-wow-delay=\"0.2s\">Welcome To Casino Photography</h2><p data-wow-delay=\"0.4s\">Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.</p><a href=\"http://tropofoto.com/contact/\" data-wow-delay=\"0.6s\">Contact Us</a> \n </section>\n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2019/12/circle_img.png\" alt=\"Call to action shap\"> \n <h2> <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png\" alt=\"title before\">Get Access To Great Features </h2> \n </section>\n <h1>Fine Quality Casino Photos Customised For You</h1> \n <p>Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.</p> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" loading=\"lazy\" /> \n <figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\" alt=\"casino-poker-cards-roulette-wheel-banner_91128-250\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\" alt=\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL-600x352.jpg\" alt=\"gwjdsL\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1-600x352.jpg\" alt=\"plazafremont\" /></figure> \n Previous\n Next\n Sign up and check free\n every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \n <img width=\"640\" height=\"326\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\" alt=\"\" loading=\"lazy\" />','Home','','inherit','closed','closed','','8-revision-v1','','','2020-10-30 11:12:08','2020-10-30 11:12:08','',8,'http://tropofoto.com/8-revision-v1/',0,'revision','',0),(2137,1,'2020-10-30 11:15:19','2020-10-30 11:15:19','<section>\n <h2>The Most Tropical Looking Casino?</h2> \n <img data-depth=\"0.5\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png\" alt=\"Featured Object image\"><img data-parallax=\'{\"x\": 0, \"y\": 60}\' src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino.png\" alt=\"Featured Image\"> \n </section> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png\" alt=\"background shape image\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png\" alt=\"background shape image\"> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\" alt=\"about featured\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png\" alt=\"about object image\"> Explore 15+ Casino \n <h2 data-wow-delay=\"0.2s\">Welcome To Casino Photography</h2><p data-wow-delay=\"0.4s\">Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.</p><a href=\"http://tropofoto.com/contact/\" data-wow-delay=\"0.6s\">Contact Us</a> \n </section>\n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2019/12/circle_img.png\" alt=\"Call to action shap\"> \n <h2> <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png\" alt=\"title before\">Get Access To Great Features </h2> \n </section>\n <h1>Fine Quality Casino Photos Customised For You</h1> \n <p>Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.</p> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" loading=\"lazy\" /> \n <figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\" alt=\"casino-poker-cards-roulette-wheel-banner_91128-250\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\" alt=\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL-600x352.jpg\" alt=\"gwjdsL\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1-600x352.jpg\" alt=\"plazafremont\" /></figure> \n Previous\n Next\n Sign up and check free\n every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \n <img width=\"640\" height=\"326\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\" alt=\"\" loading=\"lazy\" />','Home','','inherit','closed','closed','','8-revision-v1','','','2020-10-30 11:15:19','2020-10-30 11:15:19','',8,'http://tropofoto.com/8-revision-v1/',0,'revision','',0),(2138,1,'2020-10-30 11:15:56','2020-10-30 11:15:56','<section>\n <h2>The Most Tropical Looking Casino?</h2> \n <img data-depth=\"0.5\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png\" alt=\"Featured Object image\"><img data-parallax=\'{\"x\": 0, \"y\": 60}\' src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino.png\" alt=\"Featured Image\"> \n </section> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png\" alt=\"background shape image\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png\" alt=\"background shape image\"> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\" alt=\"about featured\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png\" alt=\"about object image\"> Explore 15+ Casino \n <h2 data-wow-delay=\"0.2s\">Welcome To Casino Photography</h2><p data-wow-delay=\"0.4s\">Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.</p><a href=\"http://tropofoto.com/contact/\" data-wow-delay=\"0.6s\">Contact Us</a> \n </section>\n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2019/12/circle_img.png\" alt=\"Call to action shap\"> \n <h2> <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png\" alt=\"title before\">Get Access To Great Features </h2> \n </section>\n <h1>Fine Quality Casino Photos Customised For You</h1> \n <p>Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.</p> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" loading=\"lazy\" /> \n <figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\" alt=\"casino-poker-cards-roulette-wheel-banner_91128-250\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\" alt=\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL-600x352.jpg\" alt=\"gwjdsL\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1-600x352.jpg\" alt=\"plazafremont\" /></figure> \n Previous\n Next\n Sign up and check free\n every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \n <img width=\"640\" height=\"326\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\" alt=\"\" loading=\"lazy\" />','Home','','inherit','closed','closed','','8-revision-v1','','','2020-10-30 11:15:56','2020-10-30 11:15:56','',8,'http://tropofoto.com/8-revision-v1/',0,'revision','',0),(2140,1,'2020-10-30 11:22:00','2020-10-30 11:22:00','','zix','','publish','closed','closed','','zix','','','2020-11-04 10:37:49','2020-11-04 10:37:49','',0,'http://tropofoto.com/zix/',0,'custom_css','',0),(2141,1,'2020-10-30 11:22:00','2020-10-30 11:22:00','.creative_footer_bottom { \n display: none;\n}','zix','','inherit','closed','closed','','2140-revision-v1','','','2020-10-30 11:22:00','2020-10-30 11:22:00','',2140,'http://tropofoto.com/2140-revision-v1/',0,'revision','',0),(2142,1,'2020-10-30 11:23:35','2020-10-30 11:23:35','<section>\n <h2>The Most Tropical Looking Casino?</h2> \n <img data-depth=\"0.5\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png\" alt=\"Featured Object image\"><img data-parallax=\'{\"x\": 0, \"y\": 60}\' src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino.png\" alt=\"Featured Image\"> \n </section> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png\" alt=\"background shape image\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png\" alt=\"background shape image\"> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\" alt=\"about featured\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png\" alt=\"about object image\"> Explore 15+ Casino \n <h2 data-wow-delay=\"0.2s\">Welcome To Casino Photography</h2><p data-wow-delay=\"0.4s\">Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.</p><a href=\"http://tropofoto.com/contact/\" data-wow-delay=\"0.6s\">Contact Us</a> \n </section>\n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2019/12/circle_img.png\" alt=\"Call to action shap\"> \n <h2> <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png\" alt=\"title before\">Get Access To Great Features </h2> \n </section>\n <h1>Fine Quality Casino Photos Customised For You</h1> \n <p>Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.</p> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" loading=\"lazy\" /> \n <figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\" alt=\"casino-poker-cards-roulette-wheel-banner_91128-250\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\" alt=\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL-600x352.jpg\" alt=\"gwjdsL\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1-600x352.jpg\" alt=\"plazafremont\" /></figure> \n Previous\n Next\n Sign up and check free\n every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \n <img width=\"640\" height=\"326\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\" alt=\"\" loading=\"lazy\" />','Home','','inherit','closed','closed','','8-revision-v1','','','2020-10-30 11:23:35','2020-10-30 11:23:35','',8,'http://tropofoto.com/8-revision-v1/',0,'revision','',0),(2143,1,'2020-10-30 11:24:03','2020-10-30 11:24:03','<section>\n <h2>The Most Tropical Looking Casino?</h2> \n <img data-depth=\"0.5\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-dice.png\" alt=\"Featured Object image\"><img data-parallax=\'{\"x\": 0, \"y\": 60}\' src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino.png\" alt=\"Featured Image\"> \n </section> \n <section>\n <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_one.png\" alt=\"background shape image\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2020/01/about_bg_two.png\" alt=\"background shape image\"> \n <img src=\"http://tropofoto.com/wp-content/uploads/2020/10/depositphotos_82284046-stock-photo-roulette-wheel-background.jpg\" alt=\"about featured\"><img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/dot.png\" alt=\"about object image\"> Explore 15+ Casino \n <h2 data-wow-delay=\"0.2s\">Welcome To Casino Photography</h2><p data-wow-delay=\"0.4s\">Get an idea of the latest casino most tropical looking casinos through our photo gallery. We believe that professional casino photography must be reasonable and accessible to all. Come and join us now.</p><a href=\"http://tropofoto.com/contact/\" data-wow-delay=\"0.6s\">Contact Us</a> \n </section>\n <section>\n <img src=\"http://tropofoto.com/wp-content/uploads/2019/12/circle_img.png\" alt=\"Call to action shap\"> \n <h2> <img src=\"https://droitthemes.com/wp/zix/wp-content/uploads/2019/12/promo.png\" alt=\"title before\">Get Access To Great Features </h2> \n </section>\n <h1>Fine Quality Casino Photos Customised For You</h1> \n <p>Get captivated with our genuine casino images from various artists on their latest gear. We offer absolute fine quality casino images and photos of casinos for almost any application. If you need any perfect casino image for your blog or site, we will have you covered.</p> \n <img width=\"101\" height=\"6\" src=\"http://tropofoto.com/wp-content/uploads/2019/12/title-br.png\" alt=\"\" loading=\"lazy\" /> \n <figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/casino-poker-cards-roulette-wheel-banner_91128-250-1-600x352.jpg\" alt=\"casino-poker-cards-roulette-wheel-banner_91128-250\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1-1-600x352.jpg\" alt=\"A-Perfect-Guideline-by-Bspin-to-Play-Live-European-Roulette-1 (1)\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/gwjdsL-600x352.jpg\" alt=\"gwjdsL\" /></figure><figure><img src=\"http://tropofoto.com/wp-content/uploads/2020/10/plazafremont-1-600x352.jpg\" alt=\"plazafremont\" /></figure> \n Previous\n Next\n Sign up and check free\n every day. Search and start to download exclusive tropical looking casino images now as it is easy and quick. Photos can be saved and shared and much more. \n <img width=\"640\" height=\"326\" src=\"http://tropofoto.com/wp-content/uploads/2020/10/speed-live-online-casino-andar-bahar-1-1-700x357-1.png\" alt=\"\" loading=\"lazy\" />','Home','','inherit','closed','closed','','8-revision-v1','','','2020-10-30 11:24:03','2020-10-30 11:24:03','',8,'http://tropofoto.com/8-revision-v1/',0,'revision','',0),(2144,1,'2020-11-03 06:24:39','2020-11-03 06:24:39','','cover','','inherit','closed','closed','','cover','','','2020-11-03 06:24:39','2020-11-03 06:24:39','',0,'http://tropofoto.com/wp-content/uploads/2020/11/cover.png',0,'attachment','image/png',0),(2149,1,'2020-11-04 10:37:49','2020-11-04 10:37:49','','zix','','inherit','closed','closed','','2140-revision-v1','','','2020-11-04 10:37:49','2020-11-04 10:37:49','',2140,'http://tropofoto.com/2140-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_css`
--
DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_css` (
`id` int NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`settings` longtext,
`hover` longtext,
`advanced` longtext,
`params` longtext NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_css`
--
LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_css_bkp`
--
DROP TABLE IF EXISTS `wp_revslider_css_bkp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_css_bkp` (
`id` int NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`settings` longtext,
`hover` longtext,
`advanced` longtext,
`params` longtext NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_css_bkp`
--
LOCK TABLES `wp_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wp_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `wp_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_layer_animations`
--
DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_layer_animations` (
`id` int NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`params` text NOT NULL,
`settings` text,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_layer_animations`
--
LOCK TABLES `wp_revslider_layer_animations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_layer_animations_bkp`
--
DROP TABLE IF EXISTS `wp_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_layer_animations_bkp` (
`id` int NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`params` text NOT NULL,
`settings` text,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_layer_animations_bkp`
--
LOCK TABLES `wp_revslider_layer_animations_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_layer_animations_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_layer_animations_bkp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_navigations`
--
DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_navigations` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL,
`handle` varchar(191) NOT NULL,
`type` varchar(191) NOT NULL,
`css` longtext NOT NULL,
`markup` longtext NOT NULL,
`settings` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_navigations`
--
LOCK TABLES `wp_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
INSERT INTO `wp_revslider_navigations` VALUES (1,'Bullet Bar','bullet-bar','arrows','.bullet-bar.tparrows {\n cursor:pointer;\n background:#000;\n background:rgba(0,0,0,0.5);\n width:40px;\n height:40px;\n position:absolute;\n display:block;\n z-index:100;\n}\n.bullet-bar.tparrows:hover {\n background:#000;\n}\n.bullet-bar.tparrows:before {\n font-family: \\\"revicons\\\";\n font-size:15px;\n color:#fff;\n display:block;\n line-height: 40px;\n text-align: center;\n}\n.bullet-bar.tparrows.tp-leftarrow:before {\n content: \\\"\\\\e824\\\";\n}\n.bullet-bar.tparrows.tp-rightarrow:before {\n content: \\\"\\\\e825\\\";\n}\n\n','','{\"dim\":{\"width\":160,\"height\":160},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}'),(2,'Bullet Bar','bullet-bar','thumbs','','<span class=\\\"tp-thumb-image\\\"></span>','{\"dim\":{\"width\":160,\"height\":160},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}'),(3,'Bullet Bar','bullet-bar','bullets','.bullet-bar.tp-bullets {\n}\n.bullet-bar.tp-bullets:before {\n content:\\\" \\\";\n position:absolute;\n width:100%;\n height:100%;\n background:transparent;\n padding:10px;\n margin-left:-10px;margin-top:-10px;\n box-sizing:content-box;\n}\n.bullet-bar .tp-bullet {\n width:60px;\n height:3px;\n position:absolute;\n background:#aaa;\n background:rgba(204,204,204,0.5);\n cursor: pointer;\n box-sizing:content-box;\n}\n.bullet-bar .tp-bullet:hover,\n.bullet-bar .tp-bullet.selected {\n background:rgba(204,204,204,1);\n}\n.bullet-bar .tp-bullet-image {\n}\n.bullet-bar .tp-bullet-title {\n}\n','','{\"dim\":{\"width\":160,\"height\":160},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}'),(4,'Bullet Bar','bullet-bar','tabs','','<span class=\\\"tp-tab-image\\\"></span>','{\"dim\":{\"width\":160,\"height\":160},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}');
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_navigations_bkp`
--
DROP TABLE IF EXISTS `wp_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_navigations_bkp` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL,
`handle` varchar(191) NOT NULL,
`type` varchar(191) NOT NULL,
`css` longtext NOT NULL,
`markup` longtext NOT NULL,
`settings` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_navigations_bkp`
--
LOCK TABLES `wp_revslider_navigations_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_navigations_bkp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_sliders`
--
DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_sliders` (
`id` int NOT NULL AUTO_INCREMENT,
`title` tinytext NOT NULL,
`alias` tinytext,
`params` longtext NOT NULL,
`settings` text,
`type` varchar(191) NOT NULL DEFAULT '',
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_sliders`
--
LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'slide 1','slide-1','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slide-1\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"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\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"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\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":682,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"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\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":true,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"991\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"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\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}','{\"version\":\"6.2.0\"}',''),(2,'Slide 2','slide-2','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slide-2\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"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\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"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\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":685,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"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\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":true,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":true,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"blockDragVertical\":true,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"479\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"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\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}','{\"version\":\"6.2.0\"}',''),(3,'Slide 4','slide_4','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slide_4\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"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\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"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\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"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\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"blockDragVertical\":true,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"479\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"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\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}','{\"version\":\"6.2.0\"}',''),(4,'Slide 5','slide_5','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slide_5\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"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\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"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\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"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\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"blockDragVertical\":true,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"479\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"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\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}','{\"version\":\"6.2.0\"}',''),(5,'Slide 6','slide_6','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slide_6\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"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\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"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\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":850,\"n\":768,\"t\":900,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"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\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"blockDragVertical\":true,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"479\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"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\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}','{\"version\":\"6.2.0\"}',''),(6,'Slide 7','slide_7','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slide_7\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"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\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"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\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"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\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"blockDragVertical\":true,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"479\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"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\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}','{\"version\":\"6.2.0\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_sliders_bkp`
--
DROP TABLE IF EXISTS `wp_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_sliders_bkp` (
`id` int NOT NULL AUTO_INCREMENT,
`title` tinytext NOT NULL,
`alias` tinytext,
`params` longtext NOT NULL,
`settings` text,
`type` varchar(191) NOT NULL DEFAULT '',
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_sliders_bkp`
--
LOCK TABLES `wp_revslider_sliders_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_sliders_bkp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_slides`
--
DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_slides` (
`id` int NOT NULL AUTO_INCREMENT,
`slider_id` int NOT NULL,
`slide_order` int NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_slides`
--
LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/bg13.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":{\"1\":\"cube-horizontal\"},\"slots\":[\"default\",\"default\"],\"duration\":[\"300\",\"default\"],\"easeIn\":{\"1\":\"default\"},\"easeOut\":{\"1\":\"default\"},\"rotation\":{\"1\":\"0\"}},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\"[contact-form-7 id=\\\"4\\\" title=\\\"Contact form Service 2\\\"]\",\"alias\":\"[contact-form-7 id=\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"467px\",\"e\":true},\"n\":{\"v\":\"467px\"},\"t\":{\"v\":\"467px\"},\"m\":{\"v\":\"467px\"}},\"height\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"27px\"}},\"originalWidth\":\"467px\",\"originalHeight\":\"27px\"},\"position\":{\"x\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"-17px\",\"e\":true},\"t\":{\"v\":\"-17px\"},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-292px\",\"e\":true},\"n\":{\"v\":\"199px\",\"e\":true},\"t\":{\"v\":\"199px\"},\"m\":{\"v\":\"338px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1760},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"right\"},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1650,\"start\":1760,\"startRelative\":1760},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1650,\"start\":1760,\"startRelative\":1760},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5590,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"n\":false,\"t\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"BUILD IMPRESSIVE \",\"alias\":\"BUILD IMPRESSIVE \",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"280px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-124px\",\"e\":true},\"n\":{\"v\":\"-124px\",\"e\":true},\"t\":{\"v\":\"-145px\",\"e\":true},\"m\":{\"v\":\"-127px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":420},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1290,\"start\":420,\"startRelative\":420},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1290,\"start\":420,\"startRelative\":420},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7290,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"& \",\"alias\":\"& High Performance Website\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"218px\",\"e\":true},\"t\":{\"v\":\"83px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"244px\",\"e\":true},\"n\":{\"v\":\"288px\",\"e\":true},\"t\":{\"v\":\"365px\",\"e\":true},\"m\":{\"v\":\"256px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":780},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1240,\"start\":780,\"startRelative\":780},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1240,\"start\":780,\"startRelative\":780},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"35px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\"},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\"},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"High Performance\",\"alias\":\"Caption text4\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"68px\",\"e\":true},\"n\":{\"v\":\"-66px\",\"e\":true},\"t\":{\"v\":\"-80px\",\"e\":true},\"m\":{\"v\":\"-48px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"244px\",\"e\":true},\"n\":{\"v\":\"289px\",\"e\":true},\"t\":{\"v\":\"365px\",\"e\":true},\"m\":{\"v\":\"257px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":790},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1220,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1220,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6990,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#4e81f3\",\"e\":true},\"n\":{\"v\":\"#4e81f3\",\"e\":true},\"t\":{\"v\":\"#4e81f3\",\"e\":true},\"m\":{\"v\":\"#4e81f3\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#4e81f3\",\"e\":true},\"n\":{\"v\":\"#4e81f3\",\"e\":true},\"t\":{\"v\":\"#4e81f3\",\"e\":true},\"m\":{\"v\":\"#4e81f3\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\" Website\",\"alias\":\"Caption text5\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"499px\",\"e\":true},\"n\":{\"v\":\"642px\",\"e\":true},\"t\":{\"v\":\"505px\",\"e\":true},\"m\":{\"v\":\"339px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"243px\",\"e\":true},\"n\":{\"v\":\"289px\",\"e\":true},\"t\":{\"v\":\"363px\",\"e\":true},\"m\":{\"v\":\"257px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":790},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\"},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\"},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"Mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound.\",\"alias\":\"Mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound.\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"546px\",\"e\":true},\"n\":{\"v\":\"597px\",\"e\":true},\"t\":{\"v\":\"598px\",\"e\":true},\"m\":{\"v\":\"399px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"originalWidth\":\"546px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1120},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1150,\"start\":1120,\"startRelative\":1120},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1150,\"start\":1120,\"startRelative\":1120},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6730,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"v\":\"19px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"LEARN MORE\",\"alias\":\"Button\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"205px\",\"e\":true},\"n\":{\"v\":\"205px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"205px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"246px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"412px\",\"e\":true},\"n\":{\"v\":\"95px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"116px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6320,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"22px\",\"57px\",\"22px\",\"57px\"],\"e\":true},\"n\":{\"v\":[\"19px\",\"52px\",\"19px\",\"52px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"47px\",\"16px\",\"47px\"],\"e\":true},\"m\":{\"v\":[\"14px\",\"40px\",\"14px\",\"40px\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"40px\",\"40px\",\"40px\",\"40px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#4e81f3\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"8\":{\"subtype\":\"roundbutton\",\"text\":\"TRY IT NOW\",\"alias\":\"Button\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"195px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"181px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"originalWidth\":\"195px\"},\"position\":{\"x\":{\"d\":{\"v\":\"720px\",\"e\":true},\"n\":{\"v\":\"230px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"411px\",\"e\":true},\"n\":{\"v\":\"94px\",\"e\":true},\"t\":{\"v\":\"202px\",\"e\":true},\"m\":{\"v\":\"216px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6320,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"22px\",\"57px\",\"22px\",\"57px\"],\"e\":true},\"n\":{\"v\":[\"19px\",\"52px\",\"19px\",\"52px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"47px\",\"16px\",\"47px\"],\"e\":true},\"m\":{\"v\":[\"14px\",\"35px\",\"14px\",\"35px\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#4e81f3\",\"borderColor\":\"#4e81f3\",\"borderRadius\":{\"v\":[\"40px\",\"40px\",\"40px\",\"40px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"rgba(78, 129, 243, 0)\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(2,1,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/bg9.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":{\"1\":\"cube\"},\"slots\":[\"default\",\"default\"],\"duration\":[\"300\",\"default\"],\"easeIn\":{\"1\":\"default\"},\"easeOut\":{\"1\":\"default\"},\"rotation\":{\"1\":\"0\"}},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"2\":{\"text\":\"BUILD IMPRESSIVE \",\"alias\":\"BUILD IMPRESSIVE \",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"280px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-123px\",\"e\":true},\"n\":{\"v\":\"-124px\",\"e\":true},\"t\":{\"v\":\"-145px\",\"e\":true},\"m\":{\"v\":\"-127px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":420},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1290,\"start\":420,\"startRelative\":420},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1290,\"start\":420,\"startRelative\":420},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7290,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"& \",\"alias\":\"& High Performance Website\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"293px\",\"e\":true},\"n\":{\"v\":\"218px\",\"e\":true},\"t\":{\"v\":\"83px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"288px\",\"e\":true},\"t\":{\"v\":\"365px\",\"e\":true},\"m\":{\"v\":\"256px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":780},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1240,\"start\":780,\"startRelative\":780},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1240,\"start\":780,\"startRelative\":780},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"35px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\"},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\"},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"High Performance\",\"alias\":\"Caption text4\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"344px\",\"e\":true},\"n\":{\"v\":\"-66px\",\"e\":true},\"t\":{\"v\":\"-80px\",\"e\":true},\"m\":{\"v\":\"-48px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"289px\",\"e\":true},\"t\":{\"v\":\"365px\",\"e\":true},\"m\":{\"v\":\"257px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":790},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1220,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1220,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6990,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#4e81f3\",\"e\":true},\"n\":{\"v\":\"#4e81f3\",\"e\":true},\"t\":{\"v\":\"#4e81f3\",\"e\":true},\"m\":{\"v\":\"#4e81f3\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#4e81f3\",\"e\":true},\"n\":{\"v\":\"#4e81f3\",\"e\":true},\"t\":{\"v\":\"#4e81f3\",\"e\":true},\"m\":{\"v\":\"#4e81f3\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\" Website\",\"alias\":\"Caption text5\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"776px\",\"e\":true},\"n\":{\"v\":\"642px\",\"e\":true},\"t\":{\"v\":\"505px\",\"e\":true},\"m\":{\"v\":\"339px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"289px\",\"e\":true},\"t\":{\"v\":\"363px\",\"e\":true},\"m\":{\"v\":\"257px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":790},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":790,\"startRelative\":790},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\"},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\"},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"Mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound.\",\"alias\":\"Mistaken idea of den...\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"546px\",\"e\":true},\"n\":{\"v\":\"597px\",\"e\":true},\"t\":{\"v\":\"598px\",\"e\":true},\"m\":{\"v\":\"399px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"originalWidth\":\"546px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1120},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1150,\"start\":1120,\"startRelative\":1120},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1150,\"start\":1120,\"startRelative\":1120},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6730,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"v\":\"19px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"LEARN MORE\",\"alias\":\"Button\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"205px\",\"e\":true},\"n\":{\"v\":\"205px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"205px\"},\"position\":{\"x\":{\"d\":{\"v\":\"373px\",\"e\":true},\"n\":{\"v\":\"222px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"407px\",\"e\":true},\"n\":{\"v\":\"95px\",\"e\":true},\"t\":{\"v\":\"96px\",\"e\":true},\"m\":{\"v\":\"428px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6320,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"22px\",\"57px\",\"22px\",\"57px\"],\"e\":true},\"n\":{\"v\":[\"19px\",\"52px\",\"19px\",\"52px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"47px\",\"16px\",\"47px\"],\"e\":true},\"m\":{\"v\":[\"14px\",\"40px\",\"14px\",\"40px\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"40px\",\"40px\",\"40px\",\"40px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#4e81f3\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"8\":{\"subtype\":\"roundbutton\",\"text\":\"TRY IT NOW\",\"alias\":\"Button\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"195px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"181px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"originalWidth\":\"195px\"},\"position\":{\"x\":{\"d\":{\"v\":\"383px\",\"e\":true},\"n\":{\"v\":\"223px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"408px\",\"e\":true},\"n\":{\"v\":\"95px\",\"e\":true},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"119px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1230,\"start\":1450,\"startRelative\":1450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6320,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"22px\",\"57px\",\"22px\",\"57px\"],\"e\":true},\"n\":{\"v\":[\"19px\",\"52px\",\"19px\",\"52px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"47px\",\"16px\",\"47px\"],\"e\":true},\"m\":{\"v\":[\"14px\",\"35px\",\"14px\",\"35px\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#4e81f3\",\"borderColor\":\"#4e81f3\",\"borderRadius\":{\"v\":[\"40px\",\"40px\",\"40px\",\"40px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"rgba(78, 129, 243, 0)\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(3,2,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/bg-15.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":{\"1\":\"incube-horizontal\"},\"slots\":[\"default\",\"default\"],\"duration\":[\"300\",\"default\"],\"easeIn\":{\"1\":\"default\"},\"easeOut\":{\"1\":\"default\"},\"rotation\":{\"1\":\"0\"}},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\"Image 1\",\"alias\":\"Image 1\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/apolo.png\",\"imageId\":968},\"size\":{\"width\":{\"d\":{\"v\":\"249px\",\"e\":true},\"n\":{\"v\":\"249px\"},\"t\":{\"v\":\"249px\"},\"m\":{\"v\":\"249px\"}},\"height\":{\"d\":{\"v\":\"368px\",\"e\":true},\"n\":{\"v\":\"368px\"},\"t\":{\"v\":\"368px\"},\"m\":{\"v\":\"368px\"}},\"originalWidth\":249,\"originalHeight\":368,\"aspectRatio\":{\"d\":{\"v\":0.6766304347826086},\"n\":{\"v\":0.6766304347826086},\"t\":{\"v\":0.6766304347826086},\"m\":{\"v\":0.6766304347826086}}},\"position\":{\"x\":{\"d\":{\"v\":\"971px\",\"e\":true},\"n\":{\"v\":\"850px\",\"e\":true},\"t\":{\"v\":\"850px\"},\"m\":{\"v\":\"850px\"}},\"y\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"378px\",\"e\":true},\"t\":{\"v\":\"378px\"},\"m\":{\"v\":\"378px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1380,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1380,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7120,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"n\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Image 3\",\"alias\":\"Image 3\",\"uid\":3,\"media\":{\"imageUrl\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/arrow2.png\",\"imageId\":966},\"size\":{\"width\":{\"d\":{\"v\":\"222px\",\"e\":true},\"n\":{\"v\":\"222px\"},\"t\":{\"v\":\"222px\"},\"m\":{\"v\":\"222px\"}},\"height\":{\"d\":{\"v\":\"139px\",\"e\":true},\"n\":{\"v\":\"139px\"},\"t\":{\"v\":\"139px\"},\"m\":{\"v\":\"139px\"}},\"originalWidth\":277,\"originalHeight\":173,\"aspectRatio\":{\"d\":{\"v\":1.6011560693641618},\"n\":{\"v\":1.6011560693641618},\"t\":{\"v\":1.6011560693641618},\"m\":{\"v\":1.6011560693641618}}},\"position\":{\"x\":{\"d\":{\"v\":\"801px\",\"e\":true},\"n\":{\"v\":\"801px\"},\"t\":{\"v\":\"801px\"},\"m\":{\"v\":\"801px\"}},\"y\":{\"d\":{\"v\":\"266px\",\"e\":true},\"n\":{\"v\":\"266px\"},\"t\":{\"v\":\"266px\"},\"m\":{\"v\":\"266px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":760},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":920,\"start\":760,\"startRelative\":760},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":920,\"start\":760,\"startRelative\":760},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7320,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"n\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Image 4\",\"alias\":\"Image 4\",\"uid\":4,\"media\":{\"imageUrl\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/arrow1.png\",\"imageId\":967},\"size\":{\"width\":{\"d\":{\"v\":\"165px\",\"e\":true},\"n\":{\"v\":\"165px\"},\"t\":{\"v\":\"165px\"},\"m\":{\"v\":\"165px\"}},\"height\":{\"d\":{\"v\":\"179px\",\"e\":true},\"n\":{\"v\":\"179px\"},\"t\":{\"v\":\"179px\"},\"m\":{\"v\":\"179px\"}},\"originalWidth\":218,\"originalHeight\":237,\"aspectRatio\":{\"d\":{\"v\":0.919831223628692},\"n\":{\"v\":0.919831223628692},\"t\":{\"v\":0.919831223628692},\"m\":{\"v\":0.919831223628692}}},\"position\":{\"x\":{\"d\":{\"v\":\"-170px\",\"e\":true},\"n\":{\"v\":\"-169px\",\"e\":true},\"t\":{\"v\":\"-169px\"},\"m\":{\"v\":\"-169px\"}},\"y\":{\"d\":{\"v\":\"502px\",\"e\":true},\"n\":{\"v\":\"586px\",\"e\":true},\"t\":{\"v\":\"586px\"},\"m\":{\"v\":\"586px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":770},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":920,\"start\":770,\"startRelative\":770},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":920,\"start\":770,\"startRelative\":770},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7310,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"n\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"Grow your Business\",\"alias\":\"Grow your Business\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-281px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-62px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-56px\",\"e\":true},\"m\":{\"v\":\"-48px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1340},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":1340,\"startRelative\":1340},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":1340,\"startRelative\":1340},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6520,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"The\",\"alias\":\"The\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"131px\",\"e\":true},\"t\":{\"v\":\"92px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":2000,\"startRelative\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":2000,\"startRelative\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5890,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"7\":{\"text\":\"Help of our Markeeting\",\"alias\":\"The\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"128px\",\"e\":true},\"n\":{\"v\":\"-47px\",\"e\":true},\"t\":{\"v\":\"-40px\",\"e\":true},\"m\":{\"v\":\"-29px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1820},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1080,\"start\":1820,\"startRelative\":1820},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1080,\"start\":1820,\"startRelative\":1820},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#ff5927\",\"e\":true},\"n\":{\"v\":\"#ff5927\",\"e\":true},\"t\":{\"v\":\"#ff5927\",\"e\":true},\"m\":{\"v\":\"#ff5927\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#ff5927\",\"e\":true},\"n\":{\"v\":\"#ff5927\",\"e\":true},\"t\":{\"v\":\"#ff5927\",\"e\":true},\"m\":{\"v\":\"#ff5927\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"8\":{\"text\":\"Services\\n\",\"alias\":\"The\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"637px\",\"e\":true},\"n\":{\"v\":\"143px\",\"e\":true},\"t\":{\"v\":\"105px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1070,\"start\":1600,\"startRelative\":1600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1070,\"start\":1600,\"startRelative\":1600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6330,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"roundbutton\",\"text\":\"get a quote\",\"alias\":\"Button\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-194px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"133px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"144px\",\"e\":true},\"m\":{\"v\":\"113px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2380},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":2380,\"startRelative\":2380},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":2380,\"startRelative\":2380},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5510,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"17px\",\"51px\",\"17px\",\"51px\"],\"e\":true},\"n\":{\"v\":[\"17px\",\"51px\",\"17px\",\"51px\"],\"e\":true},\"t\":{\"v\":[\"17px\",\"51px\",\"17px\",\"51px\"],\"e\":true},\"m\":{\"v\":[\"14px\",\"45px\",\"14px\",\"45px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ff5927\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"roundbutton\",\"text\":\"learn more\",\"alias\":\"Button\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"188px\",\"e\":true},\"n\":{\"v\":\"188px\",\"e\":true},\"t\":{\"v\":\"188px\",\"e\":true},\"m\":{\"v\":\"188px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"188px\"},\"position\":{\"x\":{\"d\":{\"v\":\"702px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"188px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"134px\",\"e\":true},\"n\":{\"v\":\"142px\",\"e\":true},\"t\":{\"v\":\"144px\",\"e\":true},\"m\":{\"v\":\"202px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2670},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":2670,\"startRelative\":2670},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":2670,\"startRelative\":2670},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5190,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"16px\",\"51px\",\"16px\",\"51px\"],\"e\":true},\"n\":{\"v\":[\"16px\",\"51px\",\"16px\",\"51px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"51px\",\"16px\",\"51px\"],\"e\":true},\"m\":{\"v\":[\"13px\",\"45px\",\"13px\",\"45px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255, 89, 39, 0)\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(4,2,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/bg9.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":{\"1\":\"curtain-2\"},\"slots\":[\"default\",\"default\"],\"duration\":[\"300\",\"default\"],\"easeIn\":{\"1\":\"default\"},\"easeOut\":{\"1\":\"default\"},\"rotation\":{\"1\":\"0\"}},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"5\":{\"text\":\"Grow your Business\",\"alias\":\"Grow your Business\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-72px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-56px\",\"e\":true},\"m\":{\"v\":\"-48px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":410},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":410,\"startRelative\":410},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":410,\"startRelative\":410},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7450,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"The\",\"alias\":\"The\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"243px\",\"e\":true},\"n\":{\"v\":\"131px\",\"e\":true},\"t\":{\"v\":\"92px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1310},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":1310,\"startRelative\":1310},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":1310,\"startRelative\":1310},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"7\":{\"text\":\"Help of our Markeeting\",\"alias\":\"The\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-46px\",\"e\":true},\"n\":{\"v\":\"-47px\",\"e\":true},\"t\":{\"v\":\"-40px\",\"e\":true},\"m\":{\"v\":\"-29px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1080,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1080,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6920,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#ff5927\",\"e\":true},\"n\":{\"v\":\"#ff5927\",\"e\":true},\"t\":{\"v\":\"#ff5927\",\"e\":true},\"m\":{\"v\":\"#ff5927\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#ff5927\",\"e\":true},\"n\":{\"v\":\"#ff5927\",\"e\":true},\"t\":{\"v\":\"#ff5927\",\"e\":true},\"m\":{\"v\":\"#ff5927\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"8\":{\"text\":\"Services\\n\",\"alias\":\"The\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"835px\",\"e\":true},\"n\":{\"v\":\"143px\",\"e\":true},\"t\":{\"v\":\"105px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":730},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1070,\"start\":730,\"startRelative\":730},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1070,\"start\":730,\"startRelative\":730},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"roundbutton\",\"text\":\"get a quote\",\"alias\":\"Button\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-194px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"134px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"144px\",\"e\":true},\"m\":{\"v\":\"113px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1560},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":1560,\"startRelative\":1560},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":1560,\"startRelative\":1560},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6330,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"18px\",\"51px\",\"18px\",\"51px\"],\"e\":true},\"n\":{\"v\":[\"17px\",\"51px\",\"17px\",\"51px\"],\"e\":true},\"t\":{\"v\":[\"17px\",\"51px\",\"17px\",\"51px\"],\"e\":true},\"m\":{\"v\":[\"14px\",\"45px\",\"14px\",\"45px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ff5927\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"roundbutton\",\"text\":\"learn more\",\"alias\":\"Button\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"188px\",\"e\":true},\"n\":{\"v\":\"188px\",\"e\":true},\"t\":{\"v\":\"188px\",\"e\":true},\"m\":{\"v\":\"188px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"188px\"},\"position\":{\"x\":{\"d\":{\"v\":\"343px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"188px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"132px\",\"e\":true},\"n\":{\"v\":\"142px\",\"e\":true},\"t\":{\"v\":\"144px\",\"e\":true},\"m\":{\"v\":\"202px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1870},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":1870,\"startRelative\":1870},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":1870,\"startRelative\":1870},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5990,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"16px\",\"51px\",\"16px\",\"51px\"],\"e\":true},\"n\":{\"v\":[\"16px\",\"51px\",\"16px\",\"51px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"51px\",\"16px\",\"51px\"],\"e\":true},\"m\":{\"v\":[\"13px\",\"45px\",\"13px\",\"45px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255, 89, 39, 0)\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(5,3,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/9_a_background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"4000px\",\"e\":true},\"n\":{\"v\":\"4000px\"},\"t\":{\"v\":\"4000px\"},\"m\":{\"v\":\"4000px\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"4000px\",\"originalHeight\":\"100%\"},\"position\":{\"x\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"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\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\"},\"t\":{\"v\":\"100\"},\"m\":{\"v\":\"100\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(20, 20, 20, 0.5)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"We are a creative design studio based in Argentina.\",\"alias\":\"The important of Cre...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"891px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"101px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"1383px\",\"e\":true},\"m\":{\"v\":\"1383px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"-82px\",\"e\":true},\"t\":{\"v\":\"391px\",\"e\":true},\"m\":{\"v\":\"391px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":490},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"175%\"},\"n\":{\"v\":\"175%\"},\"t\":{\"v\":\"175%\"},\"m\":{\"v\":\"175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1370,\"start\":490,\"startRelative\":490},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1370,\"start\":490,\"startRelative\":490},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7140,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<span style=\\\"font-style:italic;\\\">We Create Digital Experiences For Your Brand<\\/span>\",\"alias\":\"We Create Digital Ex...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"529px\",\"e\":true},\"n\":{\"v\":\"541px\",\"e\":true},\"t\":{\"v\":\"541px\"},\"m\":{\"v\":\"541px\"}},\"height\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"27px\",\"e\":true},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"27px\"}},\"originalWidth\":\"529px\",\"originalHeight\":\"27px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"441px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"441px\",\"e\":true},\"m\":{\"v\":\"391px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1210},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-175%\"},\"n\":{\"v\":\"-175%\"},\"t\":{\"v\":\"-175%\"},\"m\":{\"v\":\"-175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1300,\"start\":1210,\"startRelative\":1210},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1300,\"start\":1210,\"startRelative\":1210},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6490,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Old Standard TT\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"25px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\"},\"m\":{\"v\":\"26px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"ALL SLIDERS READY TO USE\",\"alias\":\"Button\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"293px\",\"e\":true},\"n\":{\"v\":\"293px\"},\"t\":{\"v\":\"293px\"},\"m\":{\"v\":\"293px\"}},\"height\":{\"d\":{\"v\":\"52px\",\"e\":true},\"n\":{\"v\":\"52px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"52px\"}},\"originalWidth\":\"293px\",\"originalHeight\":\"52px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"499px\",\"e\":true},\"n\":{\"v\":\"444px\",\"e\":true},\"t\":{\"v\":\"499px\",\"e\":true},\"m\":{\"v\":\"449px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1950},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1420,\"start\":1950,\"startRelative\":1950},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1420,\"start\":1950,\"startRelative\":1950},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5630,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"]},\"t\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"]},\"m\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\"},\"m\":{\"v\":\"12px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#45c46f\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#45c46f\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"We are a creative <br>design studio <br>based in Argentina.\",\"alias\":\"The important of Cre...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"432px\",\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"151px\",\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"-68px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"915px\",\"e\":true},\"n\":{\"v\":\"864px\",\"e\":true},\"t\":{\"v\":\"-152px\",\"e\":true},\"m\":{\"v\":\"-79px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":490},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"175%\"},\"n\":{\"v\":\"175%\"},\"t\":{\"v\":\"175%\"},\"m\":{\"v\":\"175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1370,\"start\":490,\"startRelative\":490},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1370,\"start\":490,\"startRelative\":490},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7140,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(6,3,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/9_b_background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"1920px\",\"e\":true},\"n\":{\"v\":\"1920px\"},\"t\":{\"v\":\"1920px\"},\"m\":{\"v\":\"1920px\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"1920px\",\"originalHeight\":\"100%\"},\"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\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\"},\"t\":{\"v\":\"100\"},\"m\":{\"v\":\"100\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(20, 20, 20, 0.5)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"We create a Positive Team Culture\",\"alias\":\"The important of Cre...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"-1325px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"323px\",\"e\":true},\"n\":{\"v\":\"273px\",\"e\":true},\"t\":{\"v\":\"353px\",\"e\":true},\"m\":{\"v\":\"212px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-175%\"},\"n\":{\"v\":\"-175%\"},\"t\":{\"v\":\"-175%\"},\"m\":{\"v\":\"-175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<span style=\\\"font-style:italic;\\\">We Create Digital Experiences For Your Brand<\\/span>\",\"alias\":\"We Create Digital Ex...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"535px\",\"e\":true},\"n\":{\"v\":\"535px\"},\"t\":{\"v\":\"555px\",\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"535px\",\"originalHeight\":\"27px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"401px\",\"e\":true},\"n\":{\"v\":\"351px\",\"e\":true},\"t\":{\"v\":\"431px\",\"e\":true},\"m\":{\"v\":\"321px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1620},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"175%\"},\"n\":{\"v\":\"175%\"},\"t\":{\"v\":\"175%\"},\"m\":{\"v\":\"175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":1620,\"startRelative\":1620},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":1620,\"startRelative\":1620},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5880,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Old Standard TT\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\"},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"ALL SLIDERS READY TO USE\",\"alias\":\"Button\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"271px\",\"e\":true},\"n\":{\"v\":\"271px\"},\"t\":{\"v\":\"271px\"},\"m\":{\"v\":\"271px\"}},\"height\":{\"d\":{\"v\":\"52px\",\"e\":true},\"n\":{\"v\":\"52px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"52px\"}},\"originalWidth\":\"271px\",\"originalHeight\":\"52px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"409px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"333px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2260},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":2260,\"startRelative\":2260},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":2260,\"startRelative\":2260},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5240,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"]},\"t\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"]},\"m\":{\"v\":[\"18px\",\"30px\",\"18px\",\"30px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\"},\"m\":{\"v\":\"12px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#8c38ff\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#8c38ff\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"We create a Positive<br> Team Culture\",\"alias\":\"The important of Cre...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-7px\",\"e\":true},\"n\":{\"v\":\"-1196px\",\"e\":true},\"t\":{\"v\":\"-1166px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"916px\",\"e\":true},\"n\":{\"v\":\"392px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"201px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":530},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"175%\"},\"n\":{\"v\":\"175%\"},\"t\":{\"v\":\"175%\"},\"m\":{\"v\":\"175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1480,\"start\":530,\"startRelative\":530},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1480,\"start\":530,\"startRelative\":530},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6990,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"45px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(7,3,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/9_c_background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"4000px\",\"e\":true},\"n\":{\"v\":\"4000px\"},\"t\":{\"v\":\"4000px\"},\"m\":{\"v\":\"4000px\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"4000px\",\"originalHeight\":\"100%\"},\"position\":{\"x\":{\"d\":{\"v\":\"-28px\",\"e\":true},\"n\":{\"v\":\"-28px\"},\"t\":{\"v\":\"-28px\"},\"m\":{\"v\":\"-28px\"}},\"y\":{\"d\":{\"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\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\"},\"t\":{\"v\":\"100\"},\"m\":{\"v\":\"100\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(20, 20, 20, 0.5)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"The important of <br>Creative Process\",\"alias\":\"The important of Cre...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-1127px\",\"e\":true},\"n\":{\"v\":\"-1199px\",\"e\":true},\"t\":{\"v\":\"-1189px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"389px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"476px\",\"e\":true},\"m\":{\"v\":\"226px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1290},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1480,\"start\":1290,\"startRelative\":1290},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1480,\"start\":1290,\"startRelative\":1290},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6230,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"55px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<span style=\\\"font-style:italic;\\\">We Create Digital Experiences For Your Brand<\\/span>\",\"alias\":\"We Create Digital Ex...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"553px\",\"e\":true},\"n\":{\"v\":\"553px\"},\"t\":{\"v\":\"553px\"},\"m\":{\"e\":true}},\"height\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"e\":true}},\"originalWidth\":\"553px\",\"originalHeight\":\"27px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"401px\",\"e\":true},\"n\":{\"v\":\"401px\"},\"t\":{\"v\":\"401px\"},\"m\":{\"v\":\"361px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1340},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"175%\"},\"n\":{\"v\":\"175%\"},\"t\":{\"v\":\"175%\"},\"m\":{\"v\":\"175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1410,\"start\":1340,\"startRelative\":1340},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1410,\"start\":1340,\"startRelative\":1340},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6250,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Old Standard TT\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\"},\"t\":{\"v\":\"26px\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"ALL SLIDERS READY TO USE\",\"alias\":\"Button\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"291px\",\"e\":true},\"n\":{\"v\":\"291px\"},\"t\":{\"v\":\"291px\"},\"m\":{\"v\":\"291px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"51px\",\"e\":true},\"n\":{\"v\":\"51px\"},\"t\":{\"v\":\"51px\"},\"m\":{\"v\":\"51px\",\"e\":true}},\"originalWidth\":\"291px\",\"originalHeight\":\"51px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"459px\",\"e\":true},\"n\":{\"v\":\"459px\"},\"t\":{\"v\":\"459px\"},\"m\":{\"v\":\"383px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2270},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1860,\"start\":2270,\"startRelative\":2270},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1860,\"start\":2270,\"startRelative\":2270},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4870,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"18px\",\"59px\",\"18px\",\"59px\"],\"e\":true},\"n\":{\"v\":[\"18px\",\"59px\",\"18px\",\"59px\"]},\"t\":{\"v\":[\"18px\",\"59px\",\"18px\",\"59px\"]},\"m\":{\"v\":[\"18px\",\"59px\",\"18px\",\"59px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\"},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#f2951d\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#f2951d\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"The important of Creative Process\",\"alias\":\"The important of Cre...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"v\":\"-869px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"323px\",\"e\":true},\"n\":{\"v\":\"323px\"},\"t\":{\"v\":\"323px\"},\"m\":{\"v\":\"732px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-175%\"},\"n\":{\"v\":\"-175%\"},\"t\":{\"v\":\"-175%\"},\"m\":{\"v\":\"-175%\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1570,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1570,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7130,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(8,4,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/70_a-back.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"320px\",\"e\":true},\"t\":{\"v\":\"320px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"originalWidth\":\"320px\",\"originalHeight\":\"30px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-210px\",\"e\":true},\"n\":{\"v\":\"-190px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-140px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1010},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1050,\"start\":1010,\"startRelative\":1010},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1050,\"start\":1010,\"startRelative\":1010},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6940,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"rgba(0, 0, 0, 0.3)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Enjoy your stay\",\"alias\":\"Enjoy your stay\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"481px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"184px\",\"e\":true},\"t\":{\"v\":\"278px\",\"e\":true},\"m\":{\"v\":\"209px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.8\",\"scaleY\":\"0.8\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1230,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1230,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6470,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"9px\",\"e\":true},\"n\":{\"v\":\"9px\",\"e\":true},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"9px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Creative <span style=\\\"font-style:italic; font-family:Old Standard TT\\\"> ideas<\\/span> <br>\\nInto Reality\",\"alias\":\"Craetive ideas Into ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-90px\",\"e\":true},\"n\":{\"v\":\"-79px\",\"e\":true},\"t\":{\"v\":\"-77px\",\"e\":true},\"m\":{\"v\":\"-33px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":930},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1190,\"start\":930,\"startRelative\":930},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1190,\"start\":930,\"startRelative\":930},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6880,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Aracne Regular\",\"fontSize\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\"},\"m\":{\"v\":\"75px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Aenean metus tellus, eleifend non dictum ac, fringilla sed lacus. Vestibulum gravida augue ut eleifend rhoncus. Pellentesque in nisi feugiat, aliquet enim non, ornare nulla. Nulla urna nunc, pharetra condimentum nibh ac, feugiat volutpat est.\",\"alias\":\"Aenean metus tellus,...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"850px\",\"e\":true},\"n\":{\"v\":\"742px\",\"e\":true},\"t\":{\"v\":\"711px\",\"e\":true},\"m\":{\"v\":\"711px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"92px\",\"e\":true},\"t\":{\"v\":\"91px\",\"e\":true},\"m\":{\"v\":\"91px\",\"e\":true}},\"originalWidth\":\"850px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"-10px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"446px\",\"e\":true},\"n\":{\"v\":\"421px\",\"e\":true},\"t\":{\"v\":\"505px\",\"e\":true},\"m\":{\"v\":\"746px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1910},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1060,\"start\":1910,\"startRelative\":1910},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1060,\"start\":1910,\"startRelative\":1910},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6030,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#eaeaea\",\"e\":true},\"n\":{\"v\":\"#e8e8e8\",\"e\":true},\"t\":{\"v\":\"#e8e8e8\",\"e\":true},\"m\":{\"v\":\"#e8e8e8\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#eaeaea\",\"e\":true},\"n\":{\"v\":\"#e8e8e8\",\"e\":true},\"t\":{\"v\":\"#e8e8e8\",\"e\":true},\"m\":{\"v\":\"#e8e8e8\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"subtype\":\"roundbutton\",\"text\":\"Explore More\",\"alias\":\"Button\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"173px\"},\"t\":{\"v\":\"173px\",\"e\":true},\"m\":{\"v\":\"173px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"173px\"},\"position\":{\"x\":{\"d\":{\"v\":\"389px\",\"e\":true},\"n\":{\"v\":\"264px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"581px\",\"e\":true},\"n\":{\"v\":\"541px\",\"e\":true},\"t\":{\"v\":\"629px\",\"e\":true},\"m\":{\"v\":\"437px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1200,\"start\":2100,\"startRelative\":2100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1200,\"start\":2100,\"startRelative\":2100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"n\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"]},\"t\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"m\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"rgba(255, 255, 255, 0)\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"6\":{\"subtype\":\"roundbutton\",\"text\":\"Buy Right Now\",\"alias\":\"Button\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"172px\",\"e\":true},\"n\":{\"v\":\"172px\",\"e\":true},\"t\":{\"v\":\"172px\",\"e\":true},\"m\":{\"v\":\"172px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\",\"e\":true},\"t\":{\"v\":\"48px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"172px\",\"originalHeight\":\"48px\"},\"position\":{\"x\":{\"d\":{\"v\":\"665px\",\"e\":true},\"n\":{\"v\":\"574px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"579px\",\"e\":true},\"n\":{\"v\":\"541px\",\"e\":true},\"t\":{\"v\":\"718px\",\"e\":true},\"m\":{\"v\":\"533px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2330},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1120,\"start\":2330,\"startRelative\":2330},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1120,\"start\":2330,\"startRelative\":2330},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"n\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"t\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"m\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#5949f0\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#5949f0\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(9,4,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/70_b_back.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"422px\",\"e\":true},\"t\":{\"v\":\"422px\",\"e\":true},\"m\":{\"v\":\"422px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"31px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"originalWidth\":\"422px\",\"originalHeight\":\"31px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-210px\",\"e\":true},\"n\":{\"v\":\"-210px\",\"e\":true},\"t\":{\"v\":\"-205px\",\"e\":true},\"m\":{\"v\":\"-158px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":860},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1240,\"start\":860,\"startRelative\":860},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1240,\"start\":860,\"startRelative\":860},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"rgba(0, 0, 0, 0.3)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"UPLOAD YOUR OWN FONTS\",\"alias\":\"Enjoy your stay\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"214px\",\"e\":true},\"n\":{\"v\":\"164px\",\"e\":true},\"t\":{\"v\":\"264px\",\"e\":true},\"m\":{\"v\":\"191px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1020},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1120,\"start\":1020,\"startRelative\":1020},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1120,\"start\":1020,\"startRelative\":1020},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6860,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"9px\",\"e\":true},\"n\":{\"v\":\"9px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"9px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Use custom typographies\",\"alias\":\"Craetive ideas Into ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"820px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"642px\",\"e\":true},\"m\":{\"v\":\"363px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"131px\",\"e\":true}},\"originalWidth\":\"820px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-121px\",\"e\":true},\"n\":{\"v\":\"-102px\",\"e\":true},\"t\":{\"v\":\"-92px\",\"e\":true},\"m\":{\"v\":\"-45px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1210,\"start\":650,\"startRelative\":650},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1210,\"start\":650,\"startRelative\":650},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7140,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Aracne Regular\",\"fontSize\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"65px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Aenean metus tellus, eleifend non dictum ac, fringilla sed lacus. Vestibulum gravida augue ut eleifend rhoncus. Pellentesque in nisi feugiat, aliquet enim non, ornare nulla. Nulla urna nunc, pharetra condimentum nibh ac, feugiat volutpat est.\",\"alias\":\"Aenean metus tellus,...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"770px\",\"e\":true},\"n\":{\"v\":\"651px\",\"e\":true},\"t\":{\"v\":\"675px\",\"e\":true},\"m\":{\"v\":\"675px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"92px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"770px\",\"originalHeight\":\"92px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"27px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"405px\",\"e\":true},\"n\":{\"v\":\"384px\",\"e\":true},\"t\":{\"v\":\"492px\",\"e\":true},\"m\":{\"v\":\"777px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1480},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":970,\"start\":1480,\"startRelative\":1480},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":970,\"start\":1480,\"startRelative\":1480},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#f2f2f2\",\"e\":true},\"n\":{\"v\":\"#efefef\",\"e\":true},\"t\":{\"v\":\"#efefef\",\"e\":true},\"m\":{\"v\":\"#efefef\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#f2f2f2\",\"e\":true},\"n\":{\"v\":\"#efefef\",\"e\":true},\"t\":{\"v\":\"#efefef\",\"e\":true},\"m\":{\"v\":\"#efefef\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"t\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"subtype\":\"roundbutton\",\"text\":\"Explore More\",\"alias\":\"Button\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"172px\",\"e\":true},\"n\":{\"v\":\"172px\",\"e\":true},\"t\":{\"v\":\"172px\",\"e\":true},\"m\":{\"v\":\"172px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"51px\",\"e\":true},\"n\":{\"v\":\"51px\",\"e\":true},\"t\":{\"v\":\"51px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"originalWidth\":\"172px\",\"originalHeight\":\"51px\"},\"position\":{\"x\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"232px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"551px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"611px\",\"e\":true},\"m\":{\"v\":\"431px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1630},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":940,\"start\":1630,\"startRelative\":1630},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":940,\"start\":1630,\"startRelative\":1630},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6430,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"n\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"t\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"m\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"rgba(255, 255, 255, 0)\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"6\":{\"subtype\":\"roundbutton\",\"text\":\"Buy Right Now\",\"alias\":\"Button\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"172px\",\"e\":true},\"n\":{\"v\":\"172px\"},\"t\":{\"v\":\"172px\",\"e\":true},\"m\":{\"v\":\"172px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\"},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"49px\",\"e\":true}},\"originalWidth\":\"172px\",\"originalHeight\":\"49px\"},\"position\":{\"x\":{\"d\":{\"v\":\"703px\",\"e\":true},\"n\":{\"v\":\"601px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"552px\",\"e\":true},\"n\":{\"v\":\"499px\",\"e\":true},\"t\":{\"v\":\"696px\",\"e\":true},\"m\":{\"v\":\"516px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1840},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1050,\"start\":1840,\"startRelative\":1840},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1050,\"start\":1840,\"startRelative\":1840},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6110,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"n\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"]},\"t\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"m\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ff1451\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#ff1451\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(10,4,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/70_c_back.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"422px\",\"e\":true},\"t\":{\"v\":\"422px\",\"e\":true},\"m\":{\"v\":\"422px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"31px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"originalWidth\":\"422px\",\"originalHeight\":\"31px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-213px\",\"e\":true},\"n\":{\"v\":\"-160px\",\"e\":true},\"t\":{\"v\":\"-160px\",\"e\":true},\"m\":{\"v\":\"-131px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":780},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":780,\"startRelative\":780},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1140,\"start\":780,\"startRelative\":780},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7080,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"rgba(0, 0, 0, 0.3)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"UPLOAD YOUR OWN FONTS\",\"alias\":\"Enjoy your stay\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"210px\",\"e\":true},\"n\":{\"v\":\"214px\",\"e\":true},\"t\":{\"v\":\"310px\",\"e\":true},\"m\":{\"v\":\"218px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1080},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.8\",\"scaleY\":\"0.8\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1070,\"start\":1080,\"startRelative\":1080},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1070,\"start\":1080,\"startRelative\":1080},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6850,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"9px\",\"e\":true},\"n\":{\"v\":\"9px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"9px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Its about the big picture\",\"alias\":\"Craetive ideas Into ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-118px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-43px\",\"e\":true},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":560},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1230,\"start\":560,\"startRelative\":560},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1230,\"start\":560,\"startRelative\":560},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7210,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Aracne Regular\",\"fontSize\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Aenean metus tellus, eleifend non dictum ac, fringilla sed lacus. Vestibulum gravida augue ut eleifend rhoncus. Pellentesque in nisi feugiat, aliquet enim non, ornare nulla. Nulla urna nunc, pharetra condimentum nibh ac, feugiat volutpat est.\",\"alias\":\"Aenean metus tellus,...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"741px\",\"e\":true},\"n\":{\"v\":\"808px\",\"e\":true},\"t\":{\"v\":\"714px\",\"e\":true},\"m\":{\"v\":\"714px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"92px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"91px\",\"e\":true},\"m\":{\"v\":\"91px\",\"e\":true}},\"originalWidth\":\"741px\",\"originalHeight\":\"92px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"404px\",\"e\":true},\"n\":{\"v\":\"441px\",\"e\":true},\"t\":{\"v\":\"534px\",\"e\":true},\"m\":{\"v\":\"884px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1330},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":1330,\"startRelative\":1330},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1110,\"start\":1330,\"startRelative\":1330},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6560,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#ededed\",\"e\":true},\"n\":{\"v\":\"#e8e8e8\",\"e\":true},\"t\":{\"v\":\"#e8e8e8\",\"e\":true},\"m\":{\"v\":\"#e8e8e8\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#ededed\",\"e\":true},\"n\":{\"v\":\"#e8e8e8\",\"e\":true},\"t\":{\"v\":\"#e8e8e8\",\"e\":true},\"m\":{\"v\":\"#e8e8e8\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"subtype\":\"roundbutton\",\"text\":\"Explore More\",\"alias\":\"Button\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"172px\",\"e\":true},\"n\":{\"v\":\"172px\"},\"t\":{\"v\":\"172px\",\"e\":true},\"m\":{\"v\":\"172px\"}},\"height\":{\"d\":{\"v\":\"51px\",\"e\":true},\"n\":{\"v\":\"51px\"},\"t\":{\"v\":\"51px\",\"e\":true},\"m\":{\"v\":\"51px\"}},\"originalWidth\":\"172px\",\"originalHeight\":\"51px\"},\"position\":{\"x\":{\"d\":{\"v\":\"376px\",\"e\":true},\"n\":{\"v\":\"574px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"245px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"577px\",\"e\":true},\"n\":{\"v\":\"564px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"450px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1580},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":970,\"start\":1580,\"startRelative\":1580},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":970,\"start\":1580,\"startRelative\":1580},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6450,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"n\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"]},\"t\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"],\"e\":true},\"m\":{\"v\":[\"15px\",\"15px\",\"15px\",\"15px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"rgba(255, 255, 255, 0)\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"6\":{\"subtype\":\"roundbutton\",\"text\":\"Buy Right Now\",\"alias\":\"Button\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"172px\",\"e\":true},\"n\":{\"v\":\"172px\"},\"t\":{\"v\":\"172px\",\"e\":true},\"m\":{\"v\":\"172px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\"},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"49px\",\"e\":true}},\"originalWidth\":\"172px\",\"originalHeight\":\"49px\"},\"position\":{\"x\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"587px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"-2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"577px\",\"e\":true},\"n\":{\"v\":\"566px\",\"e\":true},\"t\":{\"v\":\"650px\",\"e\":true},\"m\":{\"v\":\"478px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1800},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1100,\"start\":1800,\"startRelative\":1800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1100,\"start\":1800,\"startRelative\":1800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"n\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"]},\"t\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true},\"m\":{\"v\":[\"16px\",\"15px\",\"16px\",\"15px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#4fd752\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#4fd752\",\"borderColor\":\"#777779\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(11,5,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/2018\\/06\\/bg-16.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":{\"1\":\"slotslide-horizontal\"},\"slots\":[\"default\",\"default\"],\"duration\":[\"300\",\"default\"],\"easeIn\":{\"1\":\"default\"},\"easeOut\":{\"1\":\"default\"},\"rotation\":{\"1\":\"0\"}},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\"Create and sell beautiful online courses\",\"alias\":\"Create and sell beau...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"920px\",\"e\":true},\"n\":{\"v\":\"920px\",\"e\":true},\"t\":{\"v\":\"593px\",\"e\":true},\"m\":{\"v\":\"455px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"101px\",\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"920px\"},\"position\":{\"x\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-114px\",\"e\":true},\"t\":{\"v\":\"-136px\",\"e\":true},\"m\":{\"v\":\"-136px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":730},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1480,\"start\":730,\"startRelative\":730},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1480,\"start\":730,\"startRelative\":730},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6790,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"46px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"56px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Your skills and experiences are unique and valuable. Easily build a beautiful course website, share your knowledge, and be rewarded for it\",\"alias\":\"Your skills and expe...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"609px\",\"e\":true},\"n\":{\"v\":\"762px\",\"e\":true},\"t\":{\"v\":\"609px\",\"e\":true},\"m\":{\"v\":\"436px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"98px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"113px\",\"e\":true}},\"originalWidth\":\"609px\"},\"position\":{\"x\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1440,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1440,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7080,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"subtype\":\"roundbutton\",\"text\":\"GET STARTED\",\"alias\":\"Button\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"228px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"213px\",\"e\":true},\"m\":{\"v\":\"211px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"48px\",\"e\":true},\"m\":{\"v\":\"49px\",\"e\":true}},\"originalWidth\":\"228px\",\"originalHeight\":\"49px\"},\"position\":{\"x\":{\"d\":{\"v\":\"57px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"542px\",\"e\":true},\"n\":{\"v\":\"503px\",\"e\":true},\"t\":{\"v\":\"580px\",\"e\":true},\"m\":{\"v\":\"483px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1020},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1400,\"start\":1020,\"startRelative\":1020},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1400,\"start\":1020,\"startRelative\":1020},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true},\"n\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true},\"t\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true},\"m\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ff7f45\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(12,5,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/70_b_back.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":{\"1\":\"slotslide-horizontal\"},\"slots\":[\"default\",\"default\"],\"duration\":[\"300\",\"default\"],\"easeIn\":{\"1\":\"default\"},\"easeOut\":{\"1\":\"default\"},\"rotation\":{\"1\":\"0\"}},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\"Create and sell beautiful online courses\",\"alias\":\"Create and sell beau...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"920px\",\"e\":true},\"n\":{\"v\":\"920px\",\"e\":true},\"t\":{\"v\":\"593px\",\"e\":true},\"m\":{\"v\":\"455px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"101px\",\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"920px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-111px\",\"e\":true},\"n\":{\"v\":\"-111px\",\"e\":true},\"t\":{\"v\":\"-136px\",\"e\":true},\"m\":{\"v\":\"-136px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":730},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1480,\"start\":730,\"startRelative\":730},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1480,\"start\":730,\"startRelative\":730},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6790,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"46px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"56px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Your skills and experiences are unique and valuable. Easily build a beautiful course website, share your knowledge, and be rewarded for it\",\"alias\":\"Your skills and expe...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"704px\",\"e\":true},\"n\":{\"v\":\"684px\",\"e\":true},\"t\":{\"v\":\"609px\",\"e\":true},\"m\":{\"v\":\"436px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"97px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"113px\",\"e\":true}},\"originalWidth\":\"704px\",\"originalHeight\":\"98px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1440,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1440,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7080,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\",\"e\":true},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"subtype\":\"roundbutton\",\"text\":\"GET STARTED\",\"alias\":\"Button\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"228px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"232px\",\"e\":true},\"m\":{\"v\":\"212px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"228px\",\"originalHeight\":\"49px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"534px\",\"e\":true},\"n\":{\"v\":\"502px\",\"e\":true},\"t\":{\"v\":\"580px\",\"e\":true},\"m\":{\"v\":\"483px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1020},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1400,\"start\":1020,\"startRelative\":1020},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1400,\"start\":1020,\"startRelative\":1020},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true},\"n\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true},\"t\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true},\"m\":{\"v\":[\"15px\",\"45px\",\"15px\",\"45px\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ff7f45\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(13,6,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/18_a_background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomout\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"1920px\",\"e\":true},\"n\":{\"v\":\"1920px\"},\"t\":{\"v\":\"1920px\"},\"m\":{\"v\":\"1920px\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"1920px\",\"originalHeight\":\"100%\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\"}},\"y\":{\"d\":{\"e\":true},\"n\":{\"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\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(20, 20, 20, 0.8)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Image 2\",\"alias\":\"Image 2\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/18_a_letters.png\",\"imageId\":1822},\"size\":{\"width\":{\"d\":{\"v\":\"517px\",\"e\":true},\"n\":{\"v\":\"466px\",\"e\":true},\"t\":{\"v\":\"436px\",\"e\":true},\"m\":{\"v\":\"384px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"285px\",\"e\":true},\"n\":{\"v\":\"257px\",\"e\":true},\"t\":{\"v\":\"240px\",\"e\":true},\"m\":{\"v\":\"212px\",\"e\":true}},\"originalWidth\":585,\"originalHeight\":323,\"aspectRatio\":{\"d\":{\"v\":1.8111455108359134},\"n\":{\"v\":1.8111455108359134},\"t\":{\"v\":1.8111455108359134},\"m\":{\"v\":1.8111455108359134}}},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"53px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"-36px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"39px\",\"e\":true},\"n\":{\"v\":\"-5px\",\"e\":true},\"t\":{\"v\":\"-43px\",\"e\":true},\"m\":{\"v\":\"-40px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":380},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1700,\"start\":380,\"startRelative\":380},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1700,\"start\":380,\"startRelative\":380},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6920,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"6px\",\"e\":true},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"6px\"},\"m\":{\"v\":\"6px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"6px\"},\"position\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"53px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"703px\",\"e\":true},\"n\":{\"v\":\"598px\",\"e\":true},\"t\":{\"v\":\"617px\",\"e\":true},\"m\":{\"v\":\"467px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"2\",\"scaleY\":\"2\",\"opacity\":\"0\",\"rotationX\":\"0deg\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1320,\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1320,\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6880,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\"},\"t\":{\"v\":\"100\"},\"m\":{\"v\":\"100\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"#645ff1\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"We give It<br>\\nTo you.\",\"alias\":\"We give ItTo you.\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"52px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"640px\",\"e\":true},\"t\":{\"v\":\"650px\",\"e\":true},\"m\":{\"v\":\"501px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1240},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1300,\"start\":1240,\"startRelative\":1240},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1300,\"start\":1240,\"startRelative\":1240},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6460,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#a4a4a4\",\"e\":true},\"n\":{\"v\":\"#a4a4a4\"},\"t\":{\"v\":\"#a4a4a4\"},\"m\":{\"v\":\"#a4a4a4\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"28px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"28px\"},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#a4a4a4\",\"e\":true},\"n\":{\"v\":\"#a4a4a4\"},\"t\":{\"v\":\"#a4a4a4\"},\"m\":{\"v\":\"#a4a4a4\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"CREATIVE STYLE\",\"alias\":\"CREATIVE STYLE\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1029px\",\"e\":true},\"n\":{\"v\":\"785px\",\"e\":true},\"t\":{\"v\":\"1081px\",\"e\":true},\"m\":{\"v\":\"1081px\"}},\"y\":{\"d\":{\"v\":\"634px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2020},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":1,\"scaleY\":1,\"opacity\":1,\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":0,\"skewY\":0,\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2020,\"startRelative\":2020},\"chars\":{\"use\":true,\"delay\":\"10\",\"x\":{\"d\":{\"v\":\"-105%\"},\"n\":{\"v\":\"-105%\"},\"t\":{\"v\":\"-105%\"},\"m\":{\"v\":\"-105%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"-90deg\",\"skewX\":\"0\",\"skewY\":\"0\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":1,\"scaleY\":1,\"opacity\":1,\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":0,\"skewY\":0,\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2020,\"startRelative\":2020},\"chars\":{\"use\":true,\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":3780,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"11px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"11px\"},\"m\":{\"v\":\"11px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(14,6,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/18_b_background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomout\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"1920px\",\"e\":true},\"n\":{\"v\":\"1920px\"},\"t\":{\"v\":\"1920px\"},\"m\":{\"v\":\"1920px\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"1920px\",\"originalHeight\":\"100%\"},\"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\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(20, 20, 20, 0.5)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Image 2\",\"alias\":\"Image 2\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/18_b_letters.png\",\"imageId\":1824},\"size\":{\"width\":{\"d\":{\"v\":\"713px\",\"e\":true},\"n\":{\"v\":\"656px\",\"e\":true},\"t\":{\"v\":\"619px\",\"e\":true},\"m\":{\"v\":\"406px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"185px\",\"e\":true},\"n\":{\"v\":\"170px\",\"e\":true},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"106px\",\"e\":true}},\"originalWidth\":833,\"originalHeight\":216,\"aspectRatio\":{\"d\":{\"v\":3.8564814814814814},\"n\":{\"v\":3.8564814814814814},\"t\":{\"v\":3.8564814814814814},\"m\":{\"v\":3.8564814814814814}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"-37px\",\"e\":true},\"t\":{\"v\":\"-15px\",\"e\":true},\"m\":{\"v\":\"-80px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1700,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1700,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6750,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"6px\",\"e\":true},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"6px\",\"e\":true}},\"originalWidth\":\"30px\",\"originalHeight\":\"6px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"535px\",\"e\":true},\"n\":{\"v\":\"477px\",\"e\":true},\"t\":{\"v\":\"589px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":850},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1630,\"start\":850,\"startRelative\":850},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1630,\"start\":850,\"startRelative\":850},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6520,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#f8e017\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Spend time with<br>\\nyour family\",\"alias\":\"We give ItTo you.\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"217px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"581px\",\"e\":true},\"n\":{\"v\":\"522px\",\"e\":true},\"t\":{\"v\":\"635px\",\"e\":true},\"m\":{\"v\":\"421px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1240},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1630,\"start\":1240,\"startRelative\":1240},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1630,\"start\":1240,\"startRelative\":1240},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6130,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"28px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"CREATIVE STYLE\",\"alias\":\"CREATIVE STYLE\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\"}},\"y\":{\"d\":{\"v\":\"776px\",\"e\":true},\"n\":{\"v\":\"776px\"},\"t\":{\"v\":\"993px\",\"e\":true},\"m\":{\"v\":\"993px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1460},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":1,\"scaleY\":1,\"opacity\":1,\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":0,\"skewY\":0,\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":930,\"start\":1460,\"startRelative\":1460},\"chars\":{\"use\":true,\"delay\":\"10\",\"x\":{\"d\":{\"v\":\"-105%\"},\"n\":{\"v\":\"-105%\"},\"t\":{\"v\":\"-105%\"},\"m\":{\"v\":\"-105%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"-90deg\",\"skewX\":\"0\",\"skewY\":\"0\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":1,\"scaleY\":1,\"opacity\":1,\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":0,\"skewY\":0,\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":930,\"start\":1460,\"startRelative\":1460},\"chars\":{\"use\":true,\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5410,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"11px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"11px\",\"e\":true},\"m\":{\"v\":\"11px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}'),(15,6,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/18_c_background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"zoomin\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}','{\"1\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"1920px\",\"e\":true},\"n\":{\"v\":\"1920px\",\"e\":true},\"t\":{\"v\":\"1920px\"},\"m\":{\"v\":\"1920px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"1920px\",\"originalHeight\":\"100%\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"rgba(20, 20, 20, 0.5)\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Image 2\",\"alias\":\"Image 2\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/tropofoto.com\\/wp-content\\/uploads\\/revslider\\/18_c_letters.png\",\"imageId\":1826},\"size\":{\"width\":{\"d\":{\"v\":\"544px\",\"e\":true},\"n\":{\"v\":\"538px\",\"e\":true},\"t\":{\"v\":\"538px\"},\"m\":{\"v\":\"413px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"264px\",\"e\":true},\"n\":{\"v\":\"261px\",\"e\":true},\"t\":{\"v\":\"261px\"},\"m\":{\"v\":\"201px\",\"e\":true}},\"originalWidth\":731,\"originalHeight\":355,\"aspectRatio\":{\"d\":{\"v\":2.0591549295774647},\"n\":{\"v\":2.0591549295774647},\"t\":{\"v\":2.0591549295774647},\"m\":{\"v\":2.0591549295774647}}},\"position\":{\"x\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"-4px\",\"e\":true},\"t\":{\"v\":\"-60px\",\"e\":true},\"m\":{\"v\":\"-97px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"6px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"6px\"},\"m\":{\"v\":\"6px\",\"e\":true}},\"originalWidth\":\"30px\",\"originalHeight\":\"6px\"},\"position\":{\"x\":{\"d\":{\"v\":\"596px\",\"e\":true},\"n\":{\"v\":\"494px\",\"e\":true},\"t\":{\"v\":\"363px\",\"e\":true},\"m\":{\"v\":\"210px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"621px\",\"e\":true},\"n\":{\"v\":\"554px\",\"e\":true},\"t\":{\"v\":\"632px\",\"e\":true},\"m\":{\"v\":\"396px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-20deg\",\"rotationY\":\"-20deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1500,\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#00ff84\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Be productive<br>\\nas possible\",\"alias\":\"We give ItTo you.\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"3px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"666px\",\"e\":true},\"n\":{\"v\":\"608px\",\"e\":true},\"t\":{\"v\":\"673px\",\"e\":true},\"m\":{\"v\":\"436px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"28px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"28px\"},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"CREATIVE STYLE\",\"alias\":\"CREATIVE STYLE\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-608px\",\"e\":true},\"n\":{\"v\":\"-492px\",\"e\":true},\"t\":{\"v\":\"-845px\",\"e\":true},\"m\":{\"v\":\"-845px\"}},\"y\":{\"d\":{\"v\":\"460px\",\"e\":true},\"n\":{\"v\":\"74px\",\"e\":true},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"36px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":1,\"scaleY\":1,\"opacity\":1,\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":0,\"skewY\":0,\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":0},\"chars\":{\"use\":true,\"delay\":\"10\",\"x\":{\"d\":{\"v\":\"-105%\"},\"n\":{\"v\":\"-105%\"},\"t\":{\"v\":\"-105%\"},\"m\":{\"v\":\"-105%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"-90deg\",\"skewX\":\"0\",\"skewY\":\"0\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":1,\"scaleY\":1,\"opacity\":1,\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":0,\"skewY\":0,\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":0},\"chars\":{\"use\":true,\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"11px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"11px\",\"e\":true},\"m\":{\"v\":\"11px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}','{\"0\":\"\",\"version\":\"6.2.0\"}');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_slides_bkp`
--
DROP TABLE IF EXISTS `wp_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_slides_bkp` (
`id` int NOT NULL AUTO_INCREMENT,
`slider_id` int NOT NULL,
`slide_order` int NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_slides_bkp`
--
LOCK TABLES `wp_revslider_slides_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_static_slides`
--
DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_static_slides` (
`id` int NOT NULL AUTO_INCREMENT,
`slider_id` int NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_static_slides`
--
LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,5,'{\"version\":\"6.2.0\"}','[]','{\"version\":\"6.2.0\"}');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_static_slides_bkp`
--
DROP TABLE IF EXISTS `wp_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_revslider_static_slides_bkp` (
`id` int NOT NULL AUTO_INCREMENT,
`slider_id` int NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_static_slides_bkp`
--
LOCK TABLES `wp_revslider_static_slides_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_static_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
`term_order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (94,63,0),(94,64,0),(137,23,0),(137,26,0),(137,29,0),(137,32,0),(137,36,0),(138,23,0),(138,26,0),(138,29,0),(138,32,0),(138,36,0),(139,23,0),(139,26,0),(139,29,0),(139,32,0),(139,36,0),(140,23,0),(140,26,0),(140,29,0),(140,32,0),(140,36,0),(141,23,0),(141,26,0),(141,29,0),(141,32,0),(141,36,0),(159,23,0),(159,26,0),(159,29,0),(159,32,0),(159,36,0),(160,23,0),(160,26,0),(160,29,0),(160,32,0),(160,36,0),(161,23,0),(161,26,0),(161,29,0),(161,32,0),(161,36,0),(162,23,0),(162,26,0),(162,29,0),(162,32,0),(162,36,0),(199,30,0),(199,35,0),(230,30,0),(230,42,0),(231,42,0),(232,35,0),(233,30,0),(233,42,0),(234,30,0),(234,35,0),(234,42,0),(235,30,0),(235,42,0),(236,30,0),(236,35,0),(237,35,0),(237,42,0),(238,30,0),(238,35,0),(239,35,0),(239,42,0),(307,24,0),(307,27,0),(307,28,0),(307,33,0),(307,37,0),(333,24,0),(333,27,0),(333,28,0),(333,33,0),(333,37,0),(334,24,0),(334,27,0),(334,28,0),(334,33,0),(334,37,0),(335,24,0),(335,27,0),(335,28,0),(335,33,0),(335,37,0),(336,24,0),(336,27,0),(336,28,0),(336,33,0),(336,37,0),(337,24,0),(337,27,0),(337,28,0),(337,33,0),(337,37,0),(338,24,0),(338,27,0),(338,28,0),(338,33,0),(338,37,0),(339,24,0),(339,27,0),(339,28,0),(339,33,0),(339,37,0),(340,24,0),(340,27,0),(340,28,0),(340,33,0),(340,37,0),(341,24,0),(341,27,0),(341,28,0),(341,33,0),(341,37,0),(342,24,0),(342,27,0),(342,28,0),(342,33,0),(342,37,0),(343,24,0),(343,27,0),(343,28,0),(343,33,0),(343,37,0),(344,24,0),(344,27,0),(344,28,0),(344,33,0),(344,37,0),(345,24,0),(345,27,0),(345,28,0),(345,33,0),(345,37,0),(346,24,0),(346,27,0),(346,28,0),(346,33,0),(346,37,0),(347,24,0),(347,27,0),(347,28,0),(347,33,0),(347,37,0),(348,24,0),(348,27,0),(348,28,0),(348,33,0),(348,37,0),(349,24,0),(349,27,0),(349,28,0),(349,33,0),(349,37,0),(350,24,0),(350,27,0),(350,28,0),(350,33,0),(350,37,0),(351,24,0),(351,27,0),(351,28,0),(351,33,0),(351,37,0),(512,3,0),(512,34,0),(512,39,0),(513,3,0),(513,34,0),(513,39,0),(514,5,0),(514,10,0),(514,34,0),(514,44,0),(515,3,0),(515,34,0),(515,44,0),(516,3,0),(516,34,0),(516,44,0),(517,3,0),(517,25,0),(517,31,0),(519,3,0),(519,25,0),(519,31,0),(521,3,0),(521,25,0),(521,40,0),(522,5,0),(522,10,0),(522,15,0),(522,25,0),(522,31,0),(524,6,0),(524,25,0),(524,31,0),(525,3,0),(525,15,0),(525,25,0),(525,31,0),(532,4,0),(532,34,0),(532,39,0),(535,3,0),(535,34,0),(535,44,0),(544,3,0),(544,38,0),(547,3,0),(547,38,0),(550,3,0),(550,38,0),(553,5,0),(553,38,0),(556,3,0),(556,38,0),(565,3,0),(565,25,0),(565,31,0),(593,73,0),(688,64,0),(688,67,0),(689,67,0),(689,69,0),(690,63,0),(690,69,0),(691,64,0),(691,67,0),(691,69,0),(692,64,0),(692,67,0),(693,63,0),(693,64,0),(883,73,0),(990,66,0),(1010,23,0),(1010,26,0),(1010,29,0),(1010,32,0),(1010,36,0),(1014,23,0),(1014,26,0),(1014,36,0),(1018,23,0),(1018,29,0),(1018,36,0),(1019,23,0),(1019,29,0),(1019,36,0),(1038,66,0),(1042,66,0),(1052,68,0),(1080,70,0),(1081,68,0),(1082,68,0),(1083,70,0),(1084,68,0),(1084,70,0),(1085,68,0),(1085,70,0),(1086,70,0),(1088,70,0),(1165,66,0),(1299,66,0),(1302,66,0),(1412,66,0),(1441,66,0),(1444,66,0),(1447,66,0),(1456,66,0),(1725,28,0),(1725,33,0),(1870,66,0),(1871,66,0),(1872,66,0),(1873,66,0),(1894,64,0),(1894,69,0),(1895,68,0),(2011,63,0),(2011,64,0),(2012,64,0),(2012,69,0),(2013,64,0),(2013,67,0),(2014,67,0),(2014,69,0),(2016,63,0),(2016,69,0),(2017,64,0),(2017,67,0),(2017,69,0),(2018,64,0),(2018,67,0),(2019,63,0),(2019,64,0),(2020,68,0),(2021,70,0),(2022,68,0),(2023,68,0),(2024,70,0),(2030,68,0),(2030,70,0),(2031,68,0),(2031,70,0),(2032,70,0),(2033,68,0),(2034,70,0),(2038,73,0),(2058,73,0),(2059,73,0),(2099,74,0),(2100,74,0),(2101,74,0),(2102,74,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint unsigned NOT NULL DEFAULT '0',
`count` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'product_type','',0,14),(4,4,'product_type','',0,1),(5,5,'product_type','',0,3),(6,6,'product_type','',0,1),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,2),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,2),(16,16,'product_cat','',0,0),(17,17,'category','',0,0),(18,18,'category','',0,0),(19,19,'category','',0,0),(20,20,'category','',0,0),(21,21,'post_tag','',0,0),(22,22,'post_tag','',0,0),(23,23,'case_studies_category','',0,13),(24,24,'service_category','',0,20),(25,25,'product_cat','',0,7),(26,26,'case_studies_category','',0,11),(27,27,'service_category','',0,20),(28,28,'service_category','',0,20),(29,29,'case_studies_category','',0,12),(30,30,'project_category','',0,7),(31,31,'product_cat','',25,6),(32,32,'case_studies_category','',0,10),(33,33,'service_category','',0,20),(34,34,'product_cat','',0,7),(35,35,'project_category','',0,7),(36,36,'case_studies_category','',0,13),(37,37,'service_category','',0,20),(38,38,'product_cat','',0,5),(39,39,'product_cat','',34,3),(40,40,'product_cat','',25,1),(41,41,'action-group','',0,0),(42,42,'project_category','',0,7),(43,43,'action-group','',0,0),(44,44,'product_cat','',34,4),(50,50,'post_format','',0,0),(51,51,'post_format','',0,0),(52,52,'post_format','',0,0),(53,53,'post_format','',0,0),(54,54,'post_format','',0,0),(55,55,'post_format','',0,0),(56,56,'category','',0,0),(57,57,'post_tag','',0,0),(58,58,'post_tag','',0,0),(59,59,'post_tag','',0,0),(60,60,'post_tag','',0,0),(61,61,'post_tag','',0,0),(62,62,'post_tag','',0,0),(63,63,'portfolio_cat','',0,6),(64,64,'portfolio_cat','',0,12),(65,65,'elementor_library_type','',0,0),(66,66,'elementor_library_type','',0,15),(67,67,'portfolio_cat','',0,8),(68,68,'team_cat','',0,12),(69,69,'portfolio_cat','',0,8),(70,70,'team_cat','',0,12),(73,73,'nav_menu','',0,5),(74,74,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,25,'order','0'),(2,31,'order','0'),(3,34,'order','0'),(4,38,'order','0'),(5,39,'order','0'),(6,40,'order','0'),(7,44,'order','0'),(8,34,'product_count_product_cat','7'),(9,39,'product_count_product_cat','3'),(10,44,'product_count_product_cat','4'),(11,25,'product_count_product_cat','7'),(12,40,'product_count_product_cat','1'),(13,31,'product_count_product_cat','6'),(14,38,'product_count_product_cat','5');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
`term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Main','main',0),(3,'simple','simple',0),(4,'grouped','grouped',0),(5,'variable','variable',0),(6,'external','external',0),(7,'exclude-from-search','exclude-from-search',0),(8,'exclude-from-catalog','exclude-from-catalog',0),(9,'featured','featured',0),(10,'outofstock','outofstock',0),(11,'rated-1','rated-1',0),(12,'rated-2','rated-2',0),(13,'rated-3','rated-3',0),(14,'rated-4','rated-4',0),(15,'rated-5','rated-5',0),(16,'Uncategorized','uncategorized',0),(17,'Ideas','ideas',0),(18,'Start','start',0),(19,'Top Spaces','top-spaces',0),(20,'Unique','unique',0),(21,'acumec','acumec',0),(22,'unique','unique',0),(23,'Agro','agro',0),(24,'Agro','agro',0),(25,'Clothing','clothing',0),(26,'Company','company',0),(27,'Company\'s','companys',0),(28,'Enegry','enegry',0),(29,'Energy','energy',0),(30,'Graphic Design','graphic-design',0),(31,'Hoodies','hoodies',0),(32,'Improved','improved',0),(33,'Improved','improved',0),(34,'Music','music',0),(35,'Photography','photography',0),(36,'Plants','plants',0),(37,'Plants','plants',0),(38,'Posters','posters',0),(39,'Singles','singles',0),(40,'T-shirts','t-shirts',0),(41,'wc_update_product_lookup_tables','wc_update_product_lookup_tables',0),(42,'Web Design','web-design',0),(43,'woocommerce-db-updates','woocommerce-db-updates',0),(44,'Albums','albums',0),(50,'Status','post-format-status',0),(51,'Link','post-format-link',0),(52,'Quote','post-format-quote',0),(53,'Audio','post-format-audio',0),(54,'Video','post-format-video',0),(55,'Gallery','post-format-gallery',0),(56,'Marketing','marketing',0),(57,'Agency','agency',0),(58,'Creative','creative',0),(59,'Development','development',0),(60,'New Ideas','new-ideas',0),(61,'News','news',0),(62,'Reports','reports',0),(63,'art','art',0),(64,'creative','creative',0),(65,'page','page',0),(66,'section','section',0),(67,'strategy','strategy',0),(68,'UI/UX Design','ui-ux-design',0),(69,'web design','web-design',0),(70,'Web-developer','web-developer',0),(73,'Main Menu','main-menu',0),(74,'Quick Links','quick-links',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name','Lena'),(3,1,'last_name','Jenkins'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','text_widget_custom_html'),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','2151'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"185.56.137.0\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:cRK+qn/VPtoJJACpA2oi1tQ8'),(20,1,'wc_last_active','1602547200'),(21,1,'nav_menu_recently_edited','74'),(22,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\";}'),(23,1,'metaboxhidden_nav-menus','a:5:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:22:\"add-post-type-services\";i:2;s:18:\"add-post-type-team\";i:3;s:20:\"add-post-type-footer\";i:4;s:12:\"add-post_tag\";}'),(24,1,'wp_user-settings','libraryContent=browse&editor=html'),(25,1,'wp_user-settings-time','1604056578'),(26,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(27,1,'session_tokens','a:2:{s:64:\"9f0d4252c77ba3c75937c167d406b8638716af028e6f9d7341f211c764ae3f25\";a:4:{s:10:\"expiration\";i:1678712343;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1678539543;}s:64:\"a9b7bae53a8981f1b3d2aec76a807a07184c2783a09f3a94c3555101f121da02\";a:4:{s:10:\"expiration\";i:1678712343;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1678539543;}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int NOT NULL DEFAULT '0',
`display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$B7PTpaFmMv2eAJ26VoOlhRv0Kng5TJ0','admin','[email protected]','http://tropofoto.com','2020-10-12 14:22:55','',0,'Lena Jenkins');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_admin_note_actions`
--
DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_admin_note_actions` (
`action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`note_id` bigint unsigned NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`query` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`actioned_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`action_id`),
KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_admin_note_actions`
--
LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,'');
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_admin_notes`
--
DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_admin_notes` (
`note_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`locale` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`title` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`content_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`status` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`source` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`image` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`icon` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info',
PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_admin_notes`
--
LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2020-10-13 11:38:10',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_category_lookup`
--
DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_category_lookup` (
`category_tree_id` bigint unsigned NOT NULL,
`category_id` bigint unsigned NOT NULL,
PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_category_lookup`
--
LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_customer_lookup`
--
DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_customer_lookup` (
`customer_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned DEFAULT NULL,
`username` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_last_active` timestamp NULL DEFAULT NULL,
`date_registered` timestamp NULL DEFAULT NULL,
`country` char(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`postcode` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`state` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`customer_id`),
UNIQUE KEY `user_id` (`user_id`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_customer_lookup`
--
LOCK TABLES `wp_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_download_log`
--
DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_download_log` (
`download_log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`permission_id` bigint unsigned NOT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`user_ip_address` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`download_log_id`),
KEY `permission_id` (`permission_id`),
KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_download_log`
--
LOCK TABLES `wp_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_coupon_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
`order_id` bigint unsigned NOT NULL,
`coupon_id` bigint NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`discount_amount` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_id`,`coupon_id`),
KEY `coupon_id` (`coupon_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--
LOCK TABLES `wp_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_product_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_order_product_lookup` (
`order_item_id` bigint unsigned NOT NULL,
`order_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
`variation_id` bigint unsigned NOT NULL,
`customer_id` bigint unsigned DEFAULT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`product_qty` int NOT NULL,
`product_net_revenue` double NOT NULL DEFAULT '0',
`product_gross_revenue` double NOT NULL DEFAULT '0',
`coupon_amount` double NOT NULL DEFAULT '0',
`tax_amount` double NOT NULL DEFAULT '0',
`shipping_amount` double NOT NULL DEFAULT '0',
`shipping_tax_amount` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`),
KEY `product_id` (`product_id`),
KEY `customer_id` (`customer_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_product_lookup`
--
LOCK TABLES `wp_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_stats`
--
DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_order_stats` (
`order_id` bigint unsigned NOT NULL,
`parent_id` bigint 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 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`customer_id` bigint unsigned NOT NULL,
PRIMARY KEY (`order_id`),
KEY `date_created` (`date_created`),
KEY `customer_id` (`customer_id`),
KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_stats`
--
LOCK TABLES `wp_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_tax_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
`order_id` bigint unsigned NOT NULL,
`tax_rate_id` bigint unsigned NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`shipping_tax` double NOT NULL DEFAULT '0',
`order_tax` double NOT NULL DEFAULT '0',
`total_tax` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_id`,`tax_rate_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_tax_lookup`
--
LOCK TABLES `wp_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_product_meta_lookup`
--
DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
`product_id` bigint NOT NULL,
`sku` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
`rating_count` bigint DEFAULT '0',
`average_rating` decimal(3,2) DEFAULT '0.00',
`total_sales` bigint DEFAULT '0',
`tax_status` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
`tax_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`product_id`),
KEY `virtual` (`virtual`),
KEY `downloadable` (`downloadable`),
KEY `stock_status` (`stock_status`),
KEY `stock_quantity` (`stock_quantity`),
KEY `onsale` (`onsale`),
KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_product_meta_lookup`
--
LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (522,'T-SHIRT-SHIP-YOUR-IDEA',0,0,20.0000,35.0000,0,NULL,'outofstock',1,5.00,0,'taxable',''),(525,'T-SHIRT-HAPPY-NINJA',0,0,35.0000,35.0000,0,100,'instock',1,5.00,0,'taxable','');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_reserved_stock`
--
DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_reserved_stock` (
`order_id` bigint NOT NULL,
`product_id` bigint NOT NULL,
`stock_quantity` double NOT NULL DEFAULT '0',
`timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_reserved_stock`
--
LOCK TABLES `wp_wc_reserved_stock` WRITE;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_tax_rate_classes`
--
DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
`tax_rate_class_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_class_id`),
UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_tax_rate_classes`
--
LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_webhooks`
--
DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wc_webhooks` (
`webhook_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned NOT NULL,
`delivery_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`topic` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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 NOT NULL,
`failure_count` smallint NOT NULL DEFAULT '0',
`pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`webhook_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_webhooks`
--
LOCK TABLES `wp_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_api_keys`
--
DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_api_keys` (
`key_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`description` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permissions` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_key` char(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_secret` char(43) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`nonces` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`truncated_key` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`last_access` datetime DEFAULT NULL,
PRIMARY KEY (`key_id`),
KEY `consumer_key` (`consumer_key`),
KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_api_keys`
--
LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
`attribute_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`attribute_label` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attribute_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`attribute_orderby` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`attribute_public` int NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_id`),
KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--
LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
`permission_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`download_id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`product_id` bigint unsigned NOT NULL,
`order_id` bigint unsigned NOT NULL DEFAULT '0',
`order_key` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`user_email` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned DEFAULT NULL,
`downloads_remaining` varchar(9) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`permission_id`),
KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
KEY `order_id` (`order_id`),
KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--
LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_log`
--
DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_log` (
`log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`level` smallint NOT NULL,
`source` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`context` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`log_id`),
KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_log`
--
LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`order_item_id` bigint unsigned NOT NULL,
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `order_item_id` (`order_item_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--
LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_items`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_order_items` (
`order_item_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`order_item_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`order_item_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`order_id` bigint unsigned NOT NULL,
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_items`
--
LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`payment_token_id` bigint unsigned NOT NULL,
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `payment_token_id` (`payment_token_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--
LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokens`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
`token_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`gateway_id` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint unsigned NOT NULL DEFAULT '0',
`type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`token_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--
LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_sessions`
--
DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_sessions` (
`session_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`session_key` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`session_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`session_expiry` bigint unsigned NOT NULL,
PRIMARY KEY (`session_id`),
UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_sessions`
--
LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (1,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:706:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:18:\"[email protected]\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1602761920);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
`location_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`zone_id` bigint unsigned NOT NULL,
`location_code` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`location_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `location_id` (`location_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--
LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
`zone_id` bigint unsigned NOT NULL,
`instance_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`method_id` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`method_order` bigint unsigned NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--
LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zones`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
`zone_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`zone_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`zone_order` bigint unsigned NOT NULL,
PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--
LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
`location_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`location_code` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`tax_rate_id` bigint unsigned NOT NULL,
`location_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--
LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
`tax_rate_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`tax_rate_country` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate_priority` bigint unsigned NOT NULL,
`tax_rate_compound` int NOT NULL DEFAULT '0',
`tax_rate_shipping` int NOT NULL DEFAULT '1',
`tax_rate_order` bigint unsigned NOT NULL,
`tax_rate_class` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_id`),
KEY `tax_rate_country` (`tax_rate_country`),
KEY `tax_rate_state` (`tax_rate_state`(2)),
KEY `tax_rate_class` (`tax_rate_class`(10)),
KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rates`
--
LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpil_keyword_select_links`
--
DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int unsigned NOT NULL,
`post_id` int unsigned NOT NULL,
`post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`sentence_text` text COLLATE utf8mb4_unicode_ci,
`case_keyword` text COLLATE utf8mb4_unicode_ci,
`meta_data` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpil_keyword_select_links`
--
LOCK TABLES `wp_wpil_keyword_select_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpil_report_links`
--
DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL,
`clean_url` text COLLATE utf8mb4_unicode_ci,
`raw_url` text COLLATE utf8mb4_unicode_ci,
`host` text COLLATE utf8mb4_unicode_ci,
`anchor` text COLLATE utf8mb4_unicode_ci,
`internal` tinyint(1) DEFAULT '0',
`has_links` tinyint(1) NOT NULL DEFAULT '0',
`post_type` text COLLATE utf8mb4_unicode_ci,
`location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`link_id`),
KEY `post_id` (`post_id`),
KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpil_report_links`
--
LOCK TABLES `wp_wpil_report_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_report_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_report_links` 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 2023-04-13 11:30:04